about summary refs log tree commit diff
path: root/library/std/tests/path.rs
diff options
context:
space:
mode:
Diffstat (limited to 'library/std/tests/path.rs')
-rw-r--r--library/std/tests/path.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/tests/path.rs b/library/std/tests/path.rs
index a6f679d0ffb..dc068db04a7 100644
--- a/library/std/tests/path.rs
+++ b/library/std/tests/path.rs
@@ -1235,7 +1235,7 @@ pub fn test_push() {
         tp!("foo//", "bar", r"foo//bar");
         tp!(r"foo\\", "bar", r"foo\\bar");
         tp!("foo/.", "bar", r"foo/.\bar");
-        tp!("foo./.", "bar", r"foo././bar");
+        tp!("foo./.", "bar", r"foo./.\bar");
         tp!(r"foo\.", "bar", r"foo\.\bar");
         tp!(r"foo.\.", "bar", r"foo.\.\bar");
         tp!("foo", "", "foo\\");