Skip to content

Commit 728bc63

Browse files
ofrobotsMylesBorins
authored andcommitted
test: fix expectation in test-bootstrap-modules
PR-URL: #25112 Reviewed-By: Myles Borins <myles.borins@gmail.com> Reviewed-By: Shelley Vohr <codebytere@gmail.com>
1 parent 527407c commit 728bc63

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)