Skip to content

Commit 7b456c0

Browse files
committed
pacify the mercilous tidy
1 parent 8681290 commit 7b456c0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/tools/compiletest/src/runtest.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1073,7 +1073,8 @@ impl<'test> TestCx<'test> {
10731073
self.fatal_proc_rec("process did not return an error status", proc_res);
10741074
}
10751075

1076-
let file_name = format!("{}", self.testpaths.file.display()).replace(r"\", "/"); // on windows, translate all '\' path separators to '/'
1076+
// on windows, translate all '\' path separators to '/'
1077+
let file_name = format!("{}", self.testpaths.file.display()).replace(r"\", "/");
10771078

10781079
// If the testcase being checked contains at least one expected "help"
10791080
// message, then we'll ensure that all "help" messages are expected.

0 commit comments

Comments
 (0)