Skip to content

Commit

Permalink
fixup: unused commands cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
amnn committed Aug 16, 2024
1 parent 93ef79c commit b4e6971
Showing 1 changed file with 12 additions and 9 deletions.
21 changes: 12 additions & 9 deletions crates/sui-graphql-rpc/tests/examples_validation_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b4e6971

Please sign in to comment.