Browse Source

test: replace fixturesDir with fixtures module

PR-URL: https://github.com/nodejs/node/pull/16036
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
v9.x-staging
tabulatedreams 7 years ago
committed by Ruben Bridgewater
parent
commit
5e93df6840
No known key found for this signature in database GPG Key ID: F07496B3EB3C1762
  1. 4
      test/parallel/test-repl-syntax-error-stack.js

4
test/parallel/test-repl-syntax-error-stack.js

@ -1,8 +1,8 @@
'use strict';
const common = require('../common');
const fixtures = require('../common/fixtures');
const assert = require('assert');
const path = require('path');
const repl = require('repl');
let found = false;
@ -17,7 +17,7 @@ common.ArrayStream.prototype.write = function(output) {
const putIn = new common.ArrayStream();
repl.start('', putIn);
let file = path.join(common.fixturesDir, 'syntax', 'bad_syntax');
let file = fixtures.path('syntax', 'bad_syntax');
if (common.isWindows)
file = file.replace(/\\/g, '\\\\');

Loading…
Cancel
Save