mirror of
https://github.com/rust-lang/rustlings
synced 2024-11-10 06:34:20 +00:00
fix(run): correct "PAS" in integration_tests.rs
This commit is contained in:
parent
fb7dac75a7
commit
e9f5c9423c
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