summaryrefslogtreecommitdiff
path: root/deps/npm/test/tap/do-not-remove-other-bins.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/test/tap/do-not-remove-other-bins.js')
-rw-r--r--deps/npm/test/tap/do-not-remove-other-bins.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/deps/npm/test/tap/do-not-remove-other-bins.js b/deps/npm/test/tap/do-not-remove-other-bins.js
index af6de62305..6fec728d43 100644
--- a/deps/npm/test/tap/do-not-remove-other-bins.js
+++ b/deps/npm/test/tap/do-not-remove-other-bins.js
@@ -93,7 +93,7 @@ test('verify bins', function (t) {
var bin = path.dirname(
path.resolve(
installBin,
- fs.readlinkSync(path.join(installBin, 'testbin'))))
+ common.readBinLink(path.join(installBin, 'testbin'))))
t.is(bin, path.join(installPath, 'node_modules', 'b'))
t.end()
})
@@ -114,7 +114,7 @@ test('verify postremoval bins', function (t) {
var bin = path.dirname(
path.resolve(
installBin,
- fs.readlinkSync(path.join(installBin, 'testbin'))))
+ common.readBinLink(path.join(installBin, 'testbin'))))
t.is(bin, path.join(installPath, 'node_modules', 'b'))
t.end()
})