diff options
| author | GrantBirki <grant.birkinbine@gmail.com> | 2025-05-17 10:36:39 -0700 |
|---|---|---|
| committer | GrantBirki <grant.birkinbine@gmail.com> | 2025-05-17 10:36:39 -0700 |
| commit | 1bc8535e61595c87a041cdebd64f073918cce108 (patch) | |
| tree | bd91bb684637d9382aff4b8523633d03d486c0f4 /library/std/tests | |
| parent | 604f0e27436b4940399873d0c23e5b609a52e831 (diff) | |
| download | rust-1bc8535e61595c87a041cdebd64f073918cce108.tar.gz rust-1bc8535e61595c87a041cdebd64f073918cce108.zip | |
revert forward slash to backslash
Diffstat (limited to 'library/std/tests')
| -rw-r--r-- | library/std/tests/path.rs | 2 |
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\\"); |
