diff --git a/test/parallel/test-process-redirect-warnings.js b/test/parallel/test-process-redirect-warnings.js index b798e41bf6b5e4..16ed0357ae3d41 100644 --- a/test/parallel/test-process-redirect-warnings.js +++ b/test/parallel/test-process-redirect-warnings.js @@ -6,6 +6,7 @@ // opened and the contents are validated const common = require('../common'); +const fixtures = require('../common/fixtures'); const fs = require('fs'); const fork = require('child_process').fork; const path = require('path'); @@ -13,7 +14,7 @@ const assert = require('assert'); common.refreshTmpDir(); -const warnmod = require.resolve(common.fixturesDir + '/warnings.js'); +const warnmod = fixtures.path('warnings.js'); const warnpath = path.join(common.tmpDir, 'warnings.txt'); fork(warnmod, {execArgv: [`--redirect-warnings=${warnpath}`]})