From 16c2b54d088cd69b36b1ac8b6fe1e42d0621e30c 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 Ref: https://github.com/nodejs/node/pull/25027 --- 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..dcb10e391c526b 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}`);