Skip to content

Commit 7b76acb

Browse files
committedMay 16, 2019
test: fix expectation in test-bootstrap-modules
Refs: #27124 Refs: #25112 PR-URL: #27727 Reviewed-By: Anna Henningsen <anna@addaleax.net>
1 parent 583dc5f commit 7b76acb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎test/parallel/test-bootstrap-modules.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ const list = process.moduleLoadList.slice();
1111

1212
const assert = require('assert');
1313

14-
assert(list.length <= 81,
15-
`Expected <= 81 elements in moduleLoadLists, got ${list.length}`);
14+
assert(list.length <= 82,
15+
`Expected <= 82 elements in moduleLoadLists, got ${list.length}`);

0 commit comments

Comments
 (0)