Skip to content

Commit 6a0a54d

Browse files
docs: Fixed formatting of comments
Signed-off-by: Severiano Sisneros <[email protected]>
1 parent b8ba169 commit 6a0a54d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tap_integration_tests/tests/showcase.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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"),

0 commit comments

Comments
 (0)