Skip to content

Commit e9f5c94

Browse files
author
Greg Leonard
committed
fix(run): correct "PAS" in integration_tests.rs
1 parent fb7dac7 commit e9f5c94

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/integration_tests.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ fn run_single_test_success_with_output() {
176176
.current_dir("tests/fixture/success/")
177177
.assert()
178178
.code(0)
179-
.stdout(predicates::str::contains("THIS TEST TOO SHALL PAS"));
179+
.stdout(predicates::str::contains("THIS TEST TOO SHALL PASS"));
180180
}
181181

182182
#[test]
@@ -187,7 +187,7 @@ fn run_single_test_success_without_output() {
187187
.current_dir("tests/fixture/success/")
188188
.assert()
189189
.code(0)
190-
.stdout(predicates::str::contains("THIS TEST TOO SHALL PAS").not());
190+
.stdout(predicates::str::contains("THIS TEST TOO SHALL PASS").not());
191191
}
192192

193193
#[test]

0 commit comments

Comments
 (0)