Skip to content

Commit

Permalink
remove unnecessary requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
leighmcculloch committed Aug 9, 2024
1 parent e673f5f commit cff8b38
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions cmd/crates/soroban-test/tests/it/integration/custom_types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit cff8b38

Please sign in to comment.