From 09dea05213b8704f5673758c7d5edc2af302e6e9 Mon Sep 17 00:00:00 2001 From: Willem Wyndham Date: Mon, 27 Nov 2023 14:07:15 -0500 Subject: [PATCH] fix: clippy --- .../tests/it/integration/custom_types.rs | 32 +++++++++---------- 1 file changed, 16 insertions(+), 16 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 4e36b452cc..fda2c1f610 100644 --- a/cmd/crates/soroban-test/tests/it/integration/custom_types.rs +++ b/cmd/crates/soroban-test/tests/it/integration/custom_types.rs @@ -341,8 +341,8 @@ fn boolean(sandbox: &TestEnv, id: &str) { .assert() .success() .stdout( - r#"true -"#, + r"true +", ); } fn boolean_two(sandbox: &TestEnv, id: &str) { @@ -352,8 +352,8 @@ fn boolean_two(sandbox: &TestEnv, id: &str) { .assert() .success() .stdout( - r#"true -"#, + r"true +", ); } @@ -362,8 +362,8 @@ fn boolean_no_flag(sandbox: &TestEnv, id: &str) { .assert() .success() .stdout( - r#"false -"#, + r"false +", ); } @@ -374,8 +374,8 @@ fn boolean_false(sandbox: &TestEnv, id: &str) { .assert() .success() .stdout( - r#"false -"#, + r"false +", ); } @@ -385,15 +385,15 @@ fn boolean_not(sandbox: &TestEnv, id: &str) { .assert() .success() .stdout( - r#"false -"#, + r"false +", ); } fn boolean_not_no_flag(sandbox: &TestEnv, id: &str) { invoke_custom(sandbox, id, "not").assert().success().stdout( - r#"true -"#, + r"true +", ); } @@ -402,8 +402,8 @@ fn option_none(sandbox: &TestEnv, id: &str) { .assert() .success() .stdout( - r#"null -"#, + r"null +", ); } @@ -413,7 +413,7 @@ fn option_some(sandbox: &TestEnv, id: &str) { .assert() .success() .stdout( - r#"1 -"#, + r"1 +", ); }