Skip to content

Commit afeeb14

Browse files
arurMylesBorins
authored andcommitted
test: fix require path to tick module
1 parent bc53d17 commit afeeb14

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/async-hooks/test-timerwrap.setInterval.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
const common = require('../common');
44
const assert = require('assert');
5-
const tick = require('./tick');
5+
const tick = require('../common/tick');
66
const initHooks = require('./init-hooks');
77
const { checkInvocations } = require('./hook-checks');
88
const TIMEOUT = 1;

test/async-hooks/test-timerwrap.setTimeout.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
const common = require('../common');
44
const assert = require('assert');
5-
const tick = require('./tick');
5+
const tick = require('../common/tick');
66
const initHooks = require('./init-hooks');
77
const { checkInvocations } = require('./hook-checks');
88
const TIMEOUT = common.platformTimeout(100);

0 commit comments

Comments
 (0)