Skip to content

Commit

Permalink
fix: clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
willemneal committed Nov 27, 2023
1 parent 58f64e1 commit 09dea05
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions cmd/crates/soroban-test/tests/it/integration/custom_types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -341,8 +341,8 @@ fn boolean(sandbox: &TestEnv, id: &str) {
.assert()
.success()
.stdout(
r#"true
"#,
r"true
",
);
}
fn boolean_two(sandbox: &TestEnv, id: &str) {
Expand All @@ -352,8 +352,8 @@ fn boolean_two(sandbox: &TestEnv, id: &str) {
.assert()
.success()
.stdout(
r#"true
"#,
r"true
",
);
}

Expand All @@ -362,8 +362,8 @@ fn boolean_no_flag(sandbox: &TestEnv, id: &str) {
.assert()
.success()
.stdout(
r#"false
"#,
r"false
",
);
}

Expand All @@ -374,8 +374,8 @@ fn boolean_false(sandbox: &TestEnv, id: &str) {
.assert()
.success()
.stdout(
r#"false
"#,
r"false
",
);
}

Expand All @@ -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
",
);
}

Expand All @@ -402,8 +402,8 @@ fn option_none(sandbox: &TestEnv, id: &str) {
.assert()
.success()
.stdout(
r#"null
"#,
r"null
",
);
}

Expand All @@ -413,7 +413,7 @@ fn option_some(sandbox: &TestEnv, id: &str) {
.assert()
.success()
.stdout(
r#"1
"#,
r"1
",
);
}

0 comments on commit 09dea05

Please sign in to comment.