Skip to content

Commit 16c2b54

Browse files
committedDec 18, 2018
test: fix expectation in test-bootstrap-modules
Ref: nodejs#25027
1 parent 77c2cc9 commit 16c2b54

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

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

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

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

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

0 commit comments

Comments
 (0)
Please sign in to comment.