Skip to content

Commit 1bc8535

Browse files
committed
revert forward slash to backslash
1 parent 604f0e2 commit 1bc8535

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/std/tests/path.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1235,7 +1235,7 @@ pub fn test_push() {
12351235
tp!("foo//", "bar", r"foo//bar");
12361236
tp!(r"foo\\", "bar", r"foo\\bar");
12371237
tp!("foo/.", "bar", r"foo/.\bar");
1238-
tp!("foo./.", "bar", r"foo././bar");
1238+
tp!("foo./.", "bar", r"foo./.\bar");
12391239
tp!(r"foo\.", "bar", r"foo\.\bar");
12401240
tp!(r"foo.\.", "bar", r"foo.\.\bar");
12411241
tp!("foo", "", "foo\\");

0 commit comments

Comments
 (0)