From 7794c4aae5abdd215d8879136e4f536fd086ff17 Mon Sep 17 00:00:00 2001 From: binlingyu Date: Mon, 15 Apr 2024 10:36:10 +0800 Subject: [PATCH] Use 'MAIN_SEPARATOR_STR' instead of '&MAIN_SEPARATOR.to_string()' --- src/exec/input.rs | 4 ++-- tests/testenv/mod.rs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/exec/input.rs b/src/exec/input.rs index af7ba25..a599432 100644 --- a/src/exec/input.rs +++ b/src/exec/input.rs @@ -34,10 +34,10 @@ pub fn dirname(path: &Path) -> OsString { #[cfg(test)] mod path_tests { use super::*; - use std::path::MAIN_SEPARATOR; + use std::path::MAIN_SEPARATOR_STR; fn correct(input: &str) -> String { - input.replace('/', &MAIN_SEPARATOR.to_string()) + input.replace('/', MAIN_SEPARATOR_STR) } macro_rules! func_tests { diff --git a/tests/testenv/mod.rs b/tests/testenv/mod.rs index 188559d..c39fa69 100644 --- a/tests/testenv/mod.rs +++ b/tests/testenv/mod.rs @@ -129,7 +129,7 @@ fn normalize_output(s: &str, trim_start: bool, normalize_line: bool) -> String { .lines() .map(|line| { let line = if trim_start { line.trim_start() } else { line }; - let line = line.replace('/', &std::path::MAIN_SEPARATOR.to_string()); + let line = line.replace('/', std::path::MAIN_SEPARATOR_STR); if normalize_line { let mut words: Vec<_> = line.split_whitespace().collect(); words.sort_unstable();