File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -455,16 +455,17 @@ suite('FileSystem Utils', () => {
455
455
const file1 = await fix . createFile ( 'x/y/z/scripts/spam.py' ) ;
456
456
await fix . createDirectory ( 'x/y/z/scripts/v' ) ;
457
457
const file2 = await fix . createFile ( 'x/y/z/scripts/eggs.py' ) ;
458
- await fix . createSocket ( 'x/y/z/scripts/spam.sock' ) ;
458
+ const file3 = await fix . createSocket ( 'x/y/z/scripts/spam.sock' ) ;
459
459
await fix . createSymlink ( 'x/y/z/scripts/other' , symlinkSource ) ;
460
- const file3 = await fix . createFile ( 'x/y/z/scripts/data.json' ) ;
460
+ const file4 = await fix . createFile ( 'x/y/z/scripts/data.json' ) ;
461
461
462
462
const results = await utils . getFiles ( dirname ) ;
463
463
464
464
expect ( results . sort ( ) ) . to . deep . equal ( [
465
- file3 ,
465
+ file4 ,
466
466
file2 ,
467
- file1
467
+ file1 ,
468
+ file3
468
469
] ) ;
469
470
} ) ;
470
471
You can’t perform that action at this time.
0 commit comments