Skip to content

Commit

Permalink
fix: fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
willemneal committed Jun 20, 2024
1 parent e534c6e commit 1795deb
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion cmd/crates/soroban-test/tests/it/integration/hello_world.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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\"]");
Expand Down

0 comments on commit 1795deb

Please sign in to comment.