summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGreg Leonard <gregjamesleonard@gmail.com>2022-07-21 23:13:22 +0100
committerGreg Leonard <gregjamesleonard@gmail.com>2022-07-21 23:13:22 +0100
commite9f5c9423c8004fdccbe3dc300479497ed27c067 (patch)
tree7170b6dbb88ad324a6c9085da4dcfd85f2e6fb72
parentfb7dac75a722c681fa0ec77063fc330d6c3e8b99 (diff)
fix(run): correct "PAS" in `integration_tests.rs`
-rw-r--r--tests/integration_tests.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/integration_tests.rs b/tests/integration_tests.rs
index fc46b98..0be191f 100644
--- a/tests/integration_tests.rs
+++ b/tests/integration_tests.rs
@@ -176,7 +176,7 @@ fn run_single_test_success_with_output() {
.current_dir("tests/fixture/success/")
.assert()
.code(0)
- .stdout(predicates::str::contains("THIS TEST TOO SHALL PAS"));
+ .stdout(predicates::str::contains("THIS TEST TOO SHALL PASS"));
}
#[test]
@@ -187,7 +187,7 @@ fn run_single_test_success_without_output() {
.current_dir("tests/fixture/success/")
.assert()
.code(0)
- .stdout(predicates::str::contains("THIS TEST TOO SHALL PAS").not());
+ .stdout(predicates::str::contains("THIS TEST TOO SHALL PASS").not());
}
#[test]