summaryrefslogtreecommitdiff
path: root/deps/npm/test/tap/git-prepare.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/test/tap/git-prepare.js')
-rw-r--r--deps/npm/test/tap/git-prepare.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/deps/npm/test/tap/git-prepare.js b/deps/npm/test/tap/git-prepare.js
index 1a61056b4b..9112828ce4 100644
--- a/deps/npm/test/tap/git-prepare.js
+++ b/deps/npm/test/tap/git-prepare.js
@@ -11,7 +11,7 @@ const mr = require('npm-registry-mock')
const npm = require('../../lib/npm.js')
const common = require('../common-tap.js')
-const testdir = path.resolve(__dirname, path.basename(__filename, '.js'))
+const testdir = common.pkg
const repo = path.join(testdir, 'repo')
const prefix = path.join(testdir, 'prefix')
const cache = path.join(testdir, 'cache')
@@ -37,7 +37,7 @@ const fixture = new Tacks(Dir({
name: 'parent',
version: '1.2.3',
dependencies: {
- 'child': 'git://localhost:1234/child.git'
+ 'child': 'git://localhost:' + common.gitPort + '/child.git'
}
})
}),
@@ -144,7 +144,7 @@ function setup (cb) {
'--export-all',
'--base-path=.',
'--reuseaddr',
- '--port=1234'
+ '--port=' + common.gitPort
],
{
cwd: repo,