Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
leighmcculloch committed Sep 18, 2024
1 parent da7a3f6 commit 9c6ec58
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions cmd/crates/soroban-test/tests/it/integration/hello_world.rs
Original file line number Diff line number Diff line change
Expand Up @@ -394,12 +394,12 @@ fn invoke_log(sandbox: &TestEnv, id: &str) {
.assert()
.success()
.stderr(predicates::str::contains(
"INFO contract_event: soroban_cli::log::event: 1: DiagnosticEvent {",
"INFO contract_event: soroban_cli::log::event: 1:",
))
.stderr(predicates::str::contains("StringM(hello)"))
.stderr(predicates::str::contains("hello"))
.stderr(predicates::str::contains(
"INFO log_event: soroban_cli::log::event: 2: DiagnosticEvent",
"INFO log_event: soroban_cli::log::event: 2:",
))
.stderr(predicates::str::contains("StringM(hello {})"))
.stderr(predicates::str::contains("StringM(world)"));
.stderr(predicates::str::contains("hello {}"))
.stderr(predicates::str::contains("world"));
}

0 comments on commit 9c6ec58

Please sign in to comment.