@@ -39,8 +39,8 @@ describe('toWin32Path', () => {
39
39
it ( 'returns early' , ( ) => {
40
40
execFileSyncStub . returns ( asBuffer ( '' ) ) ;
41
41
42
- assert . deepStrictEqual ( toWin32Path ( 'D:\\' ) , 'D:\\' ) ;
43
- assert . deepStrictEqual ( toWin32Path ( 'C:\\' ) , 'C:\\' ) ;
42
+ assert . strictEqual ( toWin32Path ( 'D:\\' ) , 'D:\\' ) ;
43
+ assert . strictEqual ( toWin32Path ( 'C:\\' ) , 'C:\\' ) ;
44
44
45
45
assert . ok ( execFileSyncStub . notCalled ) ;
46
46
} ) ;
@@ -61,7 +61,7 @@ describe('toWSLPath', () => {
61
61
it ( 'trims off the trailing newline' , ( ) => {
62
62
execFileSyncStub . returns ( asBuffer ( 'the-path\n' ) ) ;
63
63
64
- assert . deepStrictEqual ( toWSLPath ( '' ) , 'the-path' ) ;
64
+ assert . strictEqual ( toWSLPath ( '' ) , 'the-path' ) ;
65
65
} )
66
66
} )
67
67
@@ -73,7 +73,7 @@ describe('getWSLLocalAppDataPath', () => {
73
73
74
74
const path = '/mnt/c/Users/user1/.bin:/mnt/c/Users/user1:/mnt/c/Users/user1/AppData/' ;
75
75
76
- assert . deepStrictEqual ( getWSLLocalAppDataPath ( path ) , '/c/folder/' ) ;
76
+ assert . strictEqual ( getWSLLocalAppDataPath ( path ) , '/c/folder/' ) ;
77
77
assert . ok ( execFileSyncStub . calledWith ( 'wslpath' , [ '-u' , 'c:\\Users\\user1\\AppData\\Local' ] ) ) ;
78
78
} ) ;
79
79
} ) ;
0 commit comments