We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d1ec0ca commit a4f5ff4Copy full SHA for a4f5ff4
tests/normalize.rs
@@ -40,7 +40,7 @@ fn windows() {
40
assert_eq_str!(p!("/foo/../../../bar").normalize(), "\\bar");
41
assert_eq_str!(p!("a//b//../b").normalize(), "a\\b");
42
assert_eq_str!(p!("a//b//./c").normalize(), "a\\b\\c");
43
- assert_eq_str!(p!("//server/share/dir/file.ext").normalize(), "\\\\server\\share\\dir\\file.ext");
+ assert_eq_str!(p!("//server/share/dir/file.ext").normalize(), "//server/share\\dir\\file.ext");
44
45
assert_eq_str!(p!("/a/b/c/../../../x/y/z").normalize(), "\\x\\y\\z");
46
assert_eq_str!(p!("C:").normalize(), "C:.");
0 commit comments