From cb03e4af52ef571ac4534c97fb8a2f42d89fba86 Mon Sep 17 00:00:00 2001 From: Ali Ijaz Sheikh Date: Tue, 18 Dec 2018 11:04:03 -0800 Subject: [PATCH] test: fix expectation in test-bootstrap-modules PR-URL: https://github.com/nodejs/node/pull/25112 Reviewed-By: Myles Borins Reviewed-By: Shelley Vohr --- test/parallel/test-bootstrap-modules.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/parallel/test-bootstrap-modules.js b/test/parallel/test-bootstrap-modules.js index 70011637e08af4..a047d50b57e2b6 100644 --- a/test/parallel/test-bootstrap-modules.js +++ b/test/parallel/test-bootstrap-modules.js @@ -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}`);