Skip to content

Commit

Permalink
test: fix expectation in test-bootstrap-modules
Browse files Browse the repository at this point in the history
Refs: #27124
Refs: #25112

PR-URL: #27727
Reviewed-By: Anna Henningsen <anna@addaleax.net>
  • Loading branch information
MylesBorins committed May 16, 2019
1 parent 583dc5f commit 7b76acb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/parallel/test-bootstrap-modules.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ const list = process.moduleLoadList.slice();

const assert = require('assert');

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

0 comments on commit 7b76acb

Please sign in to comment.