Skip to content

Commit

Permalink
test: fix require path to tick module
Browse files Browse the repository at this point in the history
  • Loading branch information
arur authored and MylesBorins committed May 16, 2019
1 parent bc53d17 commit afeeb14
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/async-hooks/test-timerwrap.setInterval.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

const common = require('../common');
const assert = require('assert');
const tick = require('./tick');
const tick = require('../common/tick');
const initHooks = require('./init-hooks');
const { checkInvocations } = require('./hook-checks');
const TIMEOUT = 1;
Expand Down
2 changes: 1 addition & 1 deletion test/async-hooks/test-timerwrap.setTimeout.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

const common = require('../common');
const assert = require('assert');
const tick = require('./tick');
const tick = require('../common/tick');
const initHooks = require('./init-hooks');
const { checkInvocations } = require('./hook-checks');
const TIMEOUT = common.platformTimeout(100);
Expand Down

0 comments on commit afeeb14

Please sign in to comment.