From 733f0227f45bf74a3032aa3f6a13f8bd38e8cc53 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 --- 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 da8db7a57b43ef..8dd80464275bed 100644 --- a/test/parallel/test-repl-tab-complete.js +++ b/test/parallel/test-repl-tab-complete.js @@ -23,11 +23,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');