Skip to content

Commit

Permalink
test: fix regression in test-require-resolver.js
Browse files Browse the repository at this point in the history
PR-URL: #16192
Refs: #15984
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
  • Loading branch information
tniessen authored and targos committed Oct 18, 2017
1 parent f89cc5d commit 816acc9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/parallel/test-require-resolve.js
Expand Up @@ -26,7 +26,7 @@ const assert = require('assert');

assert.strictEqual(
fixtures.path('a.js').toLowerCase(),
require.resolve(fixtures.path('a').toLowerCase()));
require.resolve(fixtures.path('a')).toLowerCase());
assert.strictEqual(
fixtures.path('a.js').toLowerCase(),
require.resolve(fixtures.path('a')).toLowerCase());
Expand Down

0 comments on commit 816acc9

Please sign in to comment.