From 1d68bdbe3fe602dc291fdcc0110f1e2b8dd625f2 Mon Sep 17 00:00:00 2001 From: James M Snell Date: Thu, 31 Mar 2016 19:50:29 -0700 Subject: [PATCH] test: fix error message checks in test-module-loading PR-URL: https://github.com/nodejs/node/pull/5986 Reviewed-By: Colin Ihrig --- test/sequential/test-module-loading.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/sequential/test-module-loading.js b/test/sequential/test-module-loading.js index 8e7f641326e7c9..fea3ac04298901 100644 --- a/test/sequential/test-module-loading.js +++ b/test/sequential/test-module-loading.js @@ -251,12 +251,12 @@ assert.deepEqual(children, { assert.throws(function() { console.error('require non-string'); require({ foo: 'bar' }); -}, 'path must be a string'); +}, /path must be a string/); assert.throws(function() { console.error('require empty string'); require(''); -}, 'missing path'); +}, /missing path/); process.on('exit', function() { assert.ok(a.A instanceof Function);