Skip to content

Commit

Permalink
pacify the mercilous tidy
Browse files Browse the repository at this point in the history
  • Loading branch information
nikomatsakis committed Dec 6, 2017
1 parent bec2353 commit 00f118e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/runtest.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1073,7 +1073,8 @@ impl<'test> TestCx<'test> {
self.fatal_proc_rec("process did not return an error status", proc_res);
}

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

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

0 comments on commit 00f118e

Please sign in to comment.