Skip to content

Commit 65dfeeb

Browse files
Trottaddaleax
authored andcommittedJan 14, 2019
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 <cjihrig@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: James M Snell <jasnell@gmail.com>
1 parent bdcf8f4 commit 65dfeeb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ const common = require('../common');
2424
const path = require('path');
2525
const fs = require('fs');
2626

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

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

0 commit comments

Comments
 (0)