diff --git a/cmd/crates/soroban-test/tests/it/integration/hello_world.rs b/cmd/crates/soroban-test/tests/it/integration/hello_world.rs index b6de123b5..08b5e9b8a 100644 --- a/cmd/crates/soroban-test/tests/it/integration/hello_world.rs +++ b/cmd/crates/soroban-test/tests/it/integration/hello_world.rs @@ -336,7 +336,10 @@ async fn invoke_with_id(sandbox: &TestEnv, id: &str) { async fn invoke_with_source(sandbox: &TestEnv, source: &str, id: &str) { let cmd = sandbox - .invoke_with(&["--id", id, "--yes", "--", "hello", "--world=world"], source) + .invoke_with( + &["--id", id, "--yes", "--", "hello", "--world=world"], + source, + ) .await .unwrap(); assert_eq!(cmd, "[\"Hello\",\"world\"]");