File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change 2121
2222'use strict' ;
2323const common = require ( '../common' ) ;
24+ const fixtures = require ( '../common/fixtures' ) ;
2425const assert = require ( 'assert' ) ;
2526const path = require ( 'path' ) ;
2627const fs = require ( 'fs' ) ;
27- const fn = path . join ( common . fixturesDir , 'non-existent' ) ;
28- const existingFile = path . join ( common . fixturesDir , 'exit.js' ) ;
29- const existingFile2 = path . join ( common . fixturesDir , 'create-file.js' ) ;
30- const existingDir = path . join ( common . fixturesDir , 'empty' ) ;
31- const existingDir2 = path . join ( common . fixturesDir , 'keys' ) ;
28+ const fn = fixtures . path ( 'non-existent' ) ;
29+ const existingFile = fixtures . path ( 'exit.js' ) ;
30+ const existingFile2 = fixtures . path ( 'create-file.js' ) ;
31+ const existingDir = fixtures . path ( 'empty' ) ;
32+ const existingDir2 = fixtures . path ( 'keys' ) ;
3233
3334// ASYNC_CALL
3435
You can’t perform that action at this time.
0 commit comments