From e87082293e11a2f9c6d38bcd9896e8742e110ef8 Mon Sep 17 00:00:00 2001 From: dylni <46035563+dylni@users.noreply.github.com> Date: Sat, 19 Mar 2022 10:30:34 -0400 Subject: Improve Windows path prefix parsing --- library/std/src/path/tests.rs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'library/std/src/path') diff --git a/library/std/src/path/tests.rs b/library/std/src/path/tests.rs index d1f59d2786e..0d8ea29c2be 100644 --- a/library/std/src/path/tests.rs +++ b/library/std/src/path/tests.rs @@ -971,15 +971,15 @@ pub fn test_decompositions_windows() { file_prefix: None ); - t!("\\\\?\\C:/foo", - iter: ["\\\\?\\C:/foo"], + t!("\\\\?\\C:/foo/bar", + iter: ["\\\\?\\C:", "\\", "foo/bar"], has_root: true, is_absolute: true, - parent: None, - file_name: None, - file_stem: None, + parent: Some("\\\\?\\C:/"), + file_name: Some("foo/bar"), + file_stem: Some("foo/bar"), extension: None, - file_prefix: None + file_prefix: Some("foo/bar") ); t!("\\\\.\\foo\\bar", -- cgit 1.4.1-3-g733a5