Skip to content

Commit

Permalink
Merge pull request rust-lang#1094 from greg-el/main
Browse files Browse the repository at this point in the history
fix(run): correct "PAS" in `integration_tests.rs`
  • Loading branch information
shadows-withal authored Jul 23, 2022
2 parents e0fb7e7 + e9f5c94 commit 5cb40b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/integration_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand All @@ -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]
Expand Down

0 comments on commit 5cb40b2

Please sign in to comment.