Skip to content

Commit 82bc4ac

Browse files
TrottMylesBorins
authored andcommitted
test: fix test/pummel/test-fs-watch-non-recursive.js
test-fs-watch-non-recursive was loading the `common/tmpdir` module as if it were a built-in and was failing because of it. Fix the path. The test now works. PR-URL: #25386 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Richard Lau <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent af2d22a commit 82bc4ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎test/pummel/test-fs-watch-non-recursive.js‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ const common = require('../common');
2424
constpath=require('path');
2525
constfs=require('fs');
2626

27-
consttmpdir=require('tmpdir');
27+
consttmpdir=require('../common/tmpdir');
2828

2929
consttestDir=tmpdir.path;
3030
consttestsubdir=path.join(testDir,'testsubdir');

0 commit comments

Comments
(0)