We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
integration_tests.rs
1 parent fb7dac7 commit e9f5c94Copy full SHA for e9f5c94
tests/integration_tests.rs
@@ -176,7 +176,7 @@ fn run_single_test_success_with_output() {
176
.current_dir("tests/fixture/success/")
177
.assert()
178
.code(0)
179
- .stdout(predicates::str::contains("THIS TEST TOO SHALL PAS"));
+ .stdout(predicates::str::contains("THIS TEST TOO SHALL PASS"));
180
}
181
182
#[test]
@@ -187,7 +187,7 @@ fn run_single_test_success_without_output() {
187
188
189
190
- .stdout(predicates::str::contains("THIS TEST TOO SHALL PAS").not());
+ .stdout(predicates::str::contains("THIS TEST TOO SHALL PASS").not());
191
192
193
0 commit comments