From b4e69718de30faa4c5d093d907eec3950d2e835c Mon Sep 17 00:00:00 2001 From: Ashok Menon Date: Thu, 15 Aug 2024 20:43:56 +0100 Subject: [PATCH] fixup: unused commands cargo fmt --- .../tests/examples_validation_tests.rs | 21 +++++++++++-------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/crates/sui-graphql-rpc/tests/examples_validation_tests.rs b/crates/sui-graphql-rpc/tests/examples_validation_tests.rs index 5b655fdfe151c3..205c0e1407b5d6 100644 --- a/crates/sui-graphql-rpc/tests/examples_validation_tests.rs +++ b/crates/sui-graphql-rpc/tests/examples_validation_tests.rs @@ -163,15 +163,18 @@ mod tests { let mut errors = vec![]; for (name, example) in good_examples().expect("Could not load examples") { - errors.extend(test_query( - &cluster, - &name, - &example, - &mut max_nodes, - &mut max_output_nodes, - &mut max_depth, - &mut max_payload, - ).await); + errors.extend( + test_query( + &cluster, + &name, + &example, + &mut max_nodes, + &mut max_output_nodes, + &mut max_depth, + &mut max_payload, + ) + .await, + ); } // Check that our examples can run with our usage limits