From 229a1fa2990e0c7bb51e231b90a08e741c8d73f5 Mon Sep 17 00:00:00 2001 From: Bear Trickey Date: Fri, 6 Oct 2017 11:17:55 -0700 Subject: [PATCH] test: replace fixturesDir with fixtures.path PR-URL: https://github.com/nodejs/node/pull/15994 Reviewed-By: Ruben Bridgewater Reviewed-By: Richard Lau Reviewed-By: James M Snell Reviewed-By: Colin Ihrig Reviewed-By: Luigi Pinca --- test/parallel/test-regress-GH-1899.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/parallel/test-regress-GH-1899.js b/test/parallel/test-regress-GH-1899.js index a072bc551a5c4f..6bf6860ef77d5b 100644 --- a/test/parallel/test-regress-GH-1899.js +++ b/test/parallel/test-regress-GH-1899.js @@ -1,11 +1,11 @@ 'use strict'; -const common = require('../common'); -const path = require('path'); +require('../common'); +const fixtures = require('../common/fixtures'); const assert = require('assert'); const spawn = require('child_process').spawn; const child = spawn(process.argv[0], [ - path.join(common.fixturesDir, 'GH-1899-output.js') + fixtures.path('GH-1899-output.js') ]); let output = '';