Skip to content

Commit 229a1fa

Browse files
beartrickeyMylesBorins
authored andcommitted
test: replace fixturesDir with fixtures.path
PR-URL: #15994 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
1 parent c10594f commit 229a1fa

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/parallel/test-regress-GH-1899.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
'use strict';
2-
const common = require('../common');
3-
const path = require('path');
2+
require('../common');
3+
const fixtures = require('../common/fixtures');
44
const assert = require('assert');
55
const spawn = require('child_process').spawn;
66

77
const child = spawn(process.argv[0], [
8-
path.join(common.fixturesDir, 'GH-1899-output.js')
8+
fixtures.path('GH-1899-output.js')
99
]);
1010
let output = '';
1111

0 commit comments

Comments
 (0)