Skip to content

Commit

Permalink
test: fix regression in test-require-resolver.js
Browse files Browse the repository at this point in the history
  • Loading branch information
tniessen committed Oct 13, 2017
1 parent 42dfde8 commit 2f14f95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/parallel/test-require-resolve.js
Original file line number Diff line number Diff line change
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 2f14f95

Please sign in to comment.