We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52faa4b commit b982b0dCopy full SHA for b982b0d
tests/basic.rs
@@ -145,7 +145,11 @@ fn test_no_commit_in_range() {
145
146
let assertion = fixup(&td).args(&["-P", "b"]).assert().failure();
147
let out = string(assertion.get_output().stdout.clone());
148
- assert!(out.contains("No commit contains the pattern"), out);
+ assert!(
149
+ out.contains("No commit contains the pattern"),
150
+ "actual: {}",
151
+ out
152
+ );
153
154
fixup(&td).args(&["-P", "target"]).assert().success();
155
0 commit comments