Skip to content
Prev Previous commit
Next Next commit
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>
  • Loading branch information
ofrobots authored and MylesBorins committed Dec 25, 2018
commit 728bc631e512e0cb325a071ee83c8384c75661ff
3 changes: 2 additions & 1 deletion test/parallel/test-bootstrap-modules.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,5 @@ const list = process.moduleLoadList.slice();

const assert = require('assert');

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