diff options
| author | Greg Leonard <gregjamesleonard@gmail.com> | 2022-07-21 23:13:22 +0100 |
|---|---|---|
| committer | Greg Leonard <gregjamesleonard@gmail.com> | 2022-07-21 23:13:22 +0100 |
| commit | e9f5c9423c8004fdccbe3dc300479497ed27c067 (patch) | |
| tree | 7170b6dbb88ad324a6c9085da4dcfd85f2e6fb72 /tests | |
| parent | fb7dac75a722c681fa0ec77063fc330d6c3e8b99 (diff) | |
fix(run): correct "PAS" in `integration_tests.rs`
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/integration_tests.rs | 4 |
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] |
