summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorClement Tsang <34804052+ClementTsang@users.noreply.github.com>2022-03-07 22:53:02 -0500
committerGitHub <noreply@github.com>2022-03-07 22:53:02 -0500
commit01f6bddab63d5d1d61baa9e90a326ffe2696762b (patch)
treef253911faf60aaca27a6a677cf0e7de1f0b53268 /tests
parente682882aeeb09e721f074bc8545770208c3c5321 (diff)
deps: update clap to 3.x (#690)
Updates bottom to use clap 3.x, along with some small refactoring changes.
Diffstat (limited to 'tests')
-rw-r--r--tests/arg_tests.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/arg_tests.rs b/tests/arg_tests.rs
index 34db7cf4..2c4d21a8 100644
--- a/tests/arg_tests.rs
+++ b/tests/arg_tests.rs
@@ -130,9 +130,7 @@ fn test_conflicting_temps() {
.arg("-f")
.assert()
.failure()
- .stderr(predicate::str::contains(
- "cannot be used with one or more of the other specified arguments",
- ));
+ .stderr(predicate::str::contains("cannot be used with"));
}
#[test]