From 4bfb25837bff55f8c62dc1e4c6f4ea31cf1a8ac7 Mon Sep 17 00:00:00 2001 From: Myles Borins Date: Thu, 16 May 2019 00:28:40 -0400 Subject: [PATCH] test: fix expectation in test-bootstrap-modules Refs: https://github.com/nodejs/node/pull/27124 Refs: https://github.com/nodejs/node/pull/25112 --- test/parallel/test-bootstrap-modules.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/parallel/test-bootstrap-modules.js b/test/parallel/test-bootstrap-modules.js index a047d50b57e2b6..e2c7836a362abc 100644 --- a/test/parallel/test-bootstrap-modules.js +++ b/test/parallel/test-bootstrap-modules.js @@ -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}`);