test: fix error message checks in test-module-loading

PR-URL: https://github.com/nodejs/node/pull/5986
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
This commit is contained in:
James M Snell 2016-03-31 19:50:29 -07:00
parent 64bf4b31c6
commit f739a1222f

View File

@ -247,12 +247,12 @@ assert.deepEqual(children, {
assert.throws(function() { assert.throws(function() {
console.error('require non-string'); console.error('require non-string');
require({ foo: 'bar' }); require({ foo: 'bar' });
}, 'path must be a string or Buffer'); }, /path must be a string/);
assert.throws(function() { assert.throws(function() {
console.error('require empty string'); console.error('require empty string');
require(''); require('');
}, 'missing path'); }, /missing path/);
process.on('exit', function() { process.on('exit', function() {
assert.ok(a.A instanceof Function); assert.ok(a.A instanceof Function);