File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
tap_integration_tests/tests Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -546,7 +546,7 @@ async fn test_manager_two_indexers(
546546 let future_1 = client_1. request ( "request" , ( id_1, receipt_1) ) ;
547547 let future_2 = client_2. request ( "request" , ( id_2, receipt_2) ) ;
548548 match tokio:: try_join!( future_1, future_2) {
549- Ok ( ( ( ) , ( ) ) ) => { }
549+ Ok ( ( ( ) , ( ) ) ) => { }
550550 Err ( e) => panic ! ( "Error making receipt request: {:?}" , e) ,
551551 }
552552 }
@@ -616,7 +616,7 @@ async fn test_manager_wrong_requestor_keys(
616616 // The receipts have been signed with a key that the Indexer is not expecting.
617617 // So the Indexer should return an error when a rav request is made, because they will not have any valid receipts for the request.
618618 // A rav request is made when the number of receipts sent = receipt_threshold_1.
619- // result should be an error when counter = multiple of receipt_threshold_1 and Ok otherwise.
619+ // result should be an error when counter = multiple of receipt_threshold_1 and Ok otherwise.
620620 if ( counter % receipt_threshold_1) == 0 {
621621 match result {
622622 Ok ( ( ) ) => panic ! ( "Should have failed signature verification" ) ,
You can’t perform that action at this time.
0 commit comments