summaryrefslogtreecommitdiff
path: root/tests/integration_tests.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/integration_tests.rs')
-rw-r--r--tests/integration_tests.rs9
1 files changed, 6 insertions, 3 deletions
diff --git a/tests/integration_tests.rs b/tests/integration_tests.rs
index 4c236fd..d1694a3 100644
--- a/tests/integration_tests.rs
+++ b/tests/integration_tests.rs
@@ -97,7 +97,10 @@ fn run_single_test_no_filename() {
.arg("run")
.current_dir("tests/fixture/")
.assert()
- .code(1);
+ .code(2)
+ .stderr(predicates::str::contains(
+ "required arguments were not provided",
+ ));
}
#[test]
@@ -125,9 +128,9 @@ fn reset_no_exercise() {
.unwrap()
.arg("reset")
.assert()
- .code(1)
+ .code(2)
.stderr(predicates::str::contains(
- "positional arguments not provided",
+ "required arguments were not provided",
));
}