Skip to content

Commit 76729f1

Browse files
committed
fix bug post-rebase
(another PR had capitalized a word in output; maybe I should consider a regexp here...)
1 parent bed8161 commit 76729f1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/cli.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ where WhichTemp: WhichTempDirectory
8484

8585
// The most basic check: does the output actually tell us about the
8686
// "regressing" commit.
87-
let needle = format!("regression in {}", test.expected_sha());
87+
let needle = format!("Regression in {}", test.expected_sha());
8888
// println!("searching for {:?} in stdout: {:?} stderr: {:?}", needle, stdout, stderr);
8989
assert!(stderr.contains(&needle));
9090

tests/ice.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ where WhichTemp: WhichTempDirectory
7777

7878
// The most basic check: does the output actually tell us about the
7979
// "regressing" commit.
80-
let needle = format!("regression in {}", INJECTION_COMMIT);
80+
let needle = format!("Regression in {}", INJECTION_COMMIT);
8181
// println!("searching for {:?} in stdout: {:?} stderr: {:?}", needle, stdout, stderr);
8282
assert!(stderr.contains(&needle));
8383

0 commit comments

Comments
 (0)