about summary refs log tree commit diff
path: root/library/std/tests
diff options
context:
space:
mode:
authorGrantBirki <grant.birkinbine@gmail.com>2025-05-17 10:36:39 -0700
committerGrantBirki <grant.birkinbine@gmail.com>2025-05-17 10:36:39 -0700
commit1bc8535e61595c87a041cdebd64f073918cce108 (patch)
treebd91bb684637d9382aff4b8523633d03d486c0f4 /library/std/tests
parent604f0e27436b4940399873d0c23e5b609a52e831 (diff)
downloadrust-1bc8535e61595c87a041cdebd64f073918cce108.tar.gz
rust-1bc8535e61595c87a041cdebd64f073918cce108.zip
revert forward slash to backslash
Diffstat (limited to 'library/std/tests')
-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\\");