File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ describe("Convert", () => {
66
66
67
67
it ( "decodes Windows drive specifiers" , ( ) => {
68
68
setProcessPlatform ( "win32" )
69
- expect ( Convert . uriToPath ( "file:///d:/ee/ff.txt" ) ) . equals ( "d:\\ee\\ff.txt" )
69
+ expect ( Convert . uriToPath ( "file:///d:/ee/ff.txt" ) . toLowerCase ( ) ) . equals ( "d:\\ee\\ff.txt" )
70
70
} )
71
71
72
72
it ( "URI decodes special characters" , ( ) => {
@@ -81,7 +81,7 @@ describe("Convert", () => {
81
81
82
82
it ( "parses URI without double slash in the beginning on Windows" , ( ) => {
83
83
setProcessPlatform ( "win32" )
84
- expect ( Convert . uriToPath ( "file:/x:/a/b/c/d.txt" ) ) . equals ( "x:\\a\\b\\c\\d.txt" )
84
+ expect ( Convert . uriToPath ( "file:/x:/a/b/c/d.txt" ) . toLowerCase ( ) ) . equals ( "x:\\a\\b\\c\\d.txt" )
85
85
} )
86
86
} )
87
87
You can’t perform that action at this time.
0 commit comments