diff options
Diffstat (limited to 'cli/tools/vendor/test.rs')
-rw-r--r-- | cli/tools/vendor/test.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tools/vendor/test.rs b/cli/tools/vendor/test.rs index b37e2b3b0..7f4c18fca 100644 --- a/cli/tools/vendor/test.rs +++ b/cli/tools/vendor/test.rs @@ -223,7 +223,7 @@ fn make_path(text: &str) -> PathBuf { // a cross platform path here assert!(text.starts_with('/')); if cfg!(windows) { - PathBuf::from(format!("C:{}", text.replace("/", "\\"))) + PathBuf::from(format!("C:{}", text.replace('/', "\\"))) } else { PathBuf::from(text) } |