From d70f9f6a35d3187c723a7c0cab39a8088c56c430 Mon Sep 17 00:00:00 2001 From: Stefania Sharp Date: Fri, 6 Oct 2017 11:49:42 -0700 Subject: [PATCH] test: replace common.fixturesDir with fixtures PR-URL: https://github.com/nodejs/node/pull/16015 Reviewed-By: Ruben Bridgewater Reviewed-By: Benjamin Gruenbaum Reviewed-By: James M Snell --- test/parallel/test-repl-tab-complete.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/parallel/test-repl-tab-complete.js b/test/parallel/test-repl-tab-complete.js index 11858564ef1035..df7300e526e8c1 100644 --- a/test/parallel/test-repl-tab-complete.js +++ b/test/parallel/test-repl-tab-complete.js @@ -2,11 +2,12 @@ const common = require('../common'); const assert = require('assert'); +const fixtures = require('../common/fixtures'); // We have to change the directory to ../fixtures before requiring repl // in order to make the tests for completion of node_modules work properly // since repl modifies module.paths. -process.chdir(common.fixturesDir); +process.chdir(fixtures.fixturesDir); const repl = require('repl');