File tree Expand file tree Collapse file tree 3 files changed +11
-9
lines changed
nexus/tests/integration_tests Expand file tree Collapse file tree 3 files changed +11
-9
lines changed Original file line number Diff line number Diff line change @@ -183,8 +183,8 @@ note: using Nexus URL junk
183
183
Error: listing background tasks
184
184
185
185
Caused by:
186
- 0: Communication Error: builder error: relative URL without a base
187
- 1: builder error: relative URL without a base
186
+ 0: Communication Error: builder error
187
+ 1: builder error
188
188
2: relative URL without a base
189
189
=============================================
190
190
EXECUTING COMMAND: omdb ["nexus", "background-tasks", "doc"]
@@ -549,8 +549,8 @@ note: using Oximeter URL junk
549
549
Error: failed to fetch collector info
550
550
551
551
Caused by:
552
- 0: Communication Error: builder error: relative URL without a base
553
- 1: builder error: relative URL without a base
552
+ 0: Communication Error: builder error
553
+ 1: builder error
554
554
2: relative URL without a base
555
555
=============================================
556
556
EXECUTING COMMAND: omdb ["oxql", "--clickhouse-url", "junk"]
Original file line number Diff line number Diff line change @@ -833,8 +833,8 @@ mod test {
833
833
// The DNS server is running, but has no records. Expect a failure.
834
834
let err = client. test_endpoint ( ) . await . unwrap_err ( ) ;
835
835
assert ! (
836
- err. to_string( ) . contains( "no record found " ) ,
837
- "Unexpected Error (expected 'no record found '): {err}" ,
836
+ err. to_string( ) . contains( "error sending request " ) ,
837
+ "Unexpected Error (expected 'error sending request '): {err}" ,
838
838
) ;
839
839
840
840
// Add a record for the new service.
@@ -913,8 +913,8 @@ mod test {
913
913
// The DNS server is running, but has no records. Expect a failure.
914
914
let err = client. test_endpoint ( ) . await . unwrap_err ( ) ;
915
915
assert ! (
916
- err. to_string( ) . contains( "no record found " ) ,
917
- "Unexpected Error (expected 'no record found '): {err}" ,
916
+ err. to_string( ) . contains( "error sending request " ) ,
917
+ "Unexpected Error (expected 'error sending request '): {err}" ,
918
918
) ;
919
919
920
920
// Add a record for the new service, but only to the second DNS server.
Original file line number Diff line number Diff line change @@ -602,7 +602,9 @@ async fn test_silo_certificates() {
602
602
assert ! (
603
603
error. to_string( ) . contains( "invalid peer certificate" )
604
604
|| error. to_string( ) . contains( "self-signed certificate" )
605
- || error. to_string( ) . contains( "self signed certificate" )
605
+ || error. to_string( ) . contains( "self signed certificate" ) ,
606
+ "Unexpected error: {}" ,
607
+ error,
606
608
) ;
607
609
} else {
608
610
panic ! (
You can’t perform that action at this time.
0 commit comments