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 @@ -468,16 +468,17 @@ suite('FileSystem Utils', () => {
468
468
const file1 = await fix . createFile ( 'x/y/z/scripts/spam.py' ) ;
469
469
await fix . createDirectory ( 'x/y/z/scripts/v' ) ;
470
470
const file2 = await fix . createFile ( 'x/y/z/scripts/eggs.py' ) ;
471
- await fix . createSocket ( 'x/y/z/scripts/spam.sock' ) ;
471
+ const file3 = await fix . createSocket ( 'x/y/z/scripts/spam.sock' ) ;
472
472
await fix . createSymlink ( 'x/y/z/scripts/other' , symlinkSource ) ;
473
- const file3 = await fix . createFile ( 'x/y/z/scripts/data.json' ) ;
473
+ const file4 = await fix . createFile ( 'x/y/z/scripts/data.json' ) ;
474
474
475
475
const results = await utils . getFiles ( dirname ) ;
476
476
477
477
expect ( results . sort ( ) ) . to . deep . equal ( [
478
- file3 ,
478
+ file4 ,
479
479
file2 ,
480
- file1
480
+ file1 ,
481
+ file3
481
482
] ) ;
482
483
} ) ;
483
484
You can’t perform that action at this time.
0 commit comments