From cff8b383ae278bc9c7c729cd2ec483e6ac4e3a5d Mon Sep 17 00:00:00 2001 From: Leigh McCulloch <351529+leighmcculloch@users.noreply.github.com> Date: Fri, 9 Aug 2024 20:20:36 +1000 Subject: [PATCH] remove unnecessary requirements --- .../soroban-test/tests/it/integration/custom_types.rs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/cmd/crates/soroban-test/tests/it/integration/custom_types.rs b/cmd/crates/soroban-test/tests/it/integration/custom_types.rs index 6739ff3da..6cdb61192 100644 --- a/cmd/crates/soroban-test/tests/it/integration/custom_types.rs +++ b/cmd/crates/soroban-test/tests/it/integration/custom_types.rs @@ -201,16 +201,14 @@ fn void(sandbox: &TestEnv, id: &str) { invoke_custom(sandbox, id, "woid") .assert() .success() - .stdout("\n") - .stderr(""); + .stdout("\n"); } fn val(sandbox: &TestEnv, id: &str) { invoke_custom(sandbox, id, "val") .assert() .success() - .stdout("null\n") - .stderr(""); + .stdout("null\n"); } async fn i32(sandbox: &TestEnv, id: &str) {