Skip to content

Commit

Permalink
fixes linter issue
Browse files Browse the repository at this point in the history
  • Loading branch information
JenyMzo committed Nov 21, 2019
1 parent efc2b45 commit 50a71ad
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/parallel/test-async-hooks-promise-triggerid.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ async_hooks.createHook({
if (type === 'PROMISE') {
// Check that the last known Promise is triggering the creation of
// this one.
assert.strictEqual(triggerId, promiseAsyncIds[promiseAsyncIds.length - 1] || 1);
assert.strictEqual(triggerId,
promiseAsyncIds[promiseAsyncIds.length - 1] || 1);
promiseAsyncIds.push(id);
}
}, 3),
Expand Down

0 comments on commit 50a71ad

Please sign in to comment.