mirror of
https://github.com/notohh/rustlings.git
synced 2024-11-22 14:02:22 -05:00
Merge pull request #1094 from greg-el/main
fix(run): correct "PAS" in `integration_tests.rs`
This commit is contained in:
commit
5cb40b2c95
1 changed files with 2 additions and 2 deletions
|
@ -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]
|
||||
|
|
Loading…
Reference in a new issue