From 9df886f7f2ff8711f858e8a160c6b6e36288ff70 Mon Sep 17 00:00:00 2001 From: Willem Wyndham Date: Thu, 11 Jul 2024 10:55:35 -0400 Subject: [PATCH] fix: rpc tests --- cmd/crates/soroban-test/tests/it/integration/hello_world.rs | 2 +- cmd/crates/soroban-test/tests/it/integration/tx.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 795efb322..c8aaaea42 100644 --- a/cmd/crates/soroban-test/tests/it/integration/hello_world.rs +++ b/cmd/crates/soroban-test/tests/it/integration/hello_world.rs @@ -105,7 +105,7 @@ async fn invoke() { }; config_locator .write_identity( - &"testone".parse().unwrap(), + "testone", &secret::SignerKind::SecretKey { secret_key: secret_key_1.clone(), }, diff --git a/cmd/crates/soroban-test/tests/it/integration/tx.rs b/cmd/crates/soroban-test/tests/it/integration/tx.rs index 9350d3393..ce48cc8ae 100644 --- a/cmd/crates/soroban-test/tests/it/integration/tx.rs +++ b/cmd/crates/soroban-test/tests/it/integration/tx.rs @@ -120,7 +120,7 @@ async fn sign() { .success() .stdout_as_str(); // Send transaction - let res = sandbox + sandbox .new_assert_cmd("tx") .arg("send") .write_stdin(xdr_base64.as_bytes())