Skip to content

Commit

Permalink
test: removed extra arg from test-module-loading
Browse files Browse the repository at this point in the history
  • Loading branch information
tarang9211 committed Feb 16, 2017
1 parent bd07c8f commit d227bf8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/sequential/test-module-loading.js
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ assert.strictEqual(require('../fixtures/registerExt.hello.world').test,
'passed');

console.error('load custom file types that return non-strings');
require.extensions['.test'] = function(module, filename) {
require.extensions['.test'] = function(module) {
module.exports = {
custom: 'passed'
};
Expand Down

0 comments on commit d227bf8

Please sign in to comment.