Skip to content
This repository was archived by the owner on Aug 31, 2018. It is now read-only.

Commit

Permalink
test: replace fixturesDir with fixtures module
Browse files Browse the repository at this point in the history
PR-URL: nodejs/node#16095
Reviewed-By: Anatoli Papirovski <apapirovski@mac.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
  • Loading branch information
emyl3 authored and addaleax committed Oct 26, 2017
1 parent 9727fcf commit 9b14c6e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test/parallel/test-module-children.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
// Flags: --no-deprecation
'use strict';
const common = require('../common');
require('../common');
const fixtures = require('../common/fixtures');
const assert = require('assert');
const path = require('path');

const dir = path.join(common.fixturesDir, 'GH-7131');
const dir = fixtures.path('GH-7131');
const b = require(path.join(dir, 'b'));
const a = require(path.join(dir, 'a'));

Expand Down

0 comments on commit 9b14c6e

Please sign in to comment.