revert forward slash to backslash

This commit is contained in:
GrantBirki 2025-05-17 10:36:39 -07:00
parent 604f0e2743
commit 1bc8535e61
No known key found for this signature in database
GPG key ID: 65497A530F6F9405

View file

@ -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\\");