summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/integration_tests.rs7
1 files changed, 2 insertions, 5 deletions
diff --git a/tests/integration_tests.rs b/tests/integration_tests.rs
index f81cc94..7d30467 100644
--- a/tests/integration_tests.rs
+++ b/tests/integration_tests.rs
@@ -1,5 +1,4 @@
use assert_cmd::prelude::*;
-use predicates::boolean::PredicateBooleanExt;
use std::process::Command;
#[test]
@@ -110,8 +109,7 @@ fn run_compile_exercise_does_not_prompt() {
.args(["run", "pending_exercise"])
.current_dir("tests/fixture/state")
.assert()
- .code(0)
- .stdout(predicates::str::contains("I AM NOT DONE").not());
+ .code(0);
}
#[test]
@@ -121,8 +119,7 @@ fn run_test_exercise_does_not_prompt() {
.args(["run", "pending_test_exercise"])
.current_dir("tests/fixture/state")
.assert()
- .code(0)
- .stdout(predicates::str::contains("I AM NOT DONE").not());
+ .code(0);
}
#[test]