Skip to content
This repository has been archived by the owner on Aug 31, 2018. It is now read-only.

Commit

Permalink
test: fix regression in test-require-resolver.js
Browse files Browse the repository at this point in the history
PR-URL: nodejs/node#16192
Refs: nodejs/node#15984
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
  • Loading branch information
tniessen authored and addaleax committed Oct 15, 2017
1 parent 2fb8e8f commit 0608636
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 0608636

Please sign in to comment.