From 49fb07826e9527e20877c5625e0cd6019980e637 Mon Sep 17 00:00:00 2001 From: Elizabeth Engelman <4752801+elizabethengelman@users.noreply.github.com> Date: Fri, 6 Sep 2024 15:30:15 -0400 Subject: [PATCH] Fix int tests --- cmd/crates/soroban-test/tests/it/integration/dotenv.rs | 2 +- cmd/crates/soroban-test/tests/it/integration/hello_world.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/crates/soroban-test/tests/it/integration/dotenv.rs b/cmd/crates/soroban-test/tests/it/integration/dotenv.rs index b8e76d1fc..efdb01217 100644 --- a/cmd/crates/soroban-test/tests/it/integration/dotenv.rs +++ b/cmd/crates/soroban-test/tests/it/integration/dotenv.rs @@ -42,7 +42,7 @@ async fn current_env_not_overwritten() { .arg("--world=world") .assert() .stderr( - "error: Contract not found: CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4\n", + "❌ error: Contract not found: CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4\n", ); } 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 7cdc77b3e..20b680997 100644 --- a/cmd/crates/soroban-test/tests/it/integration/hello_world.rs +++ b/cmd/crates/soroban-test/tests/it/integration/hello_world.rs @@ -243,7 +243,7 @@ fn contract_data_read_failure(sandbox: &TestEnv, id: &str) { .assert() .failure() .stderr( - "error: no matching contract data entries were found for the specified contract id\n", + "❌ error: no matching contract data entries were found for the specified contract id\n", ); }