summaryrefslogtreecommitdiff
path: root/deps/npm/test/tap/bugs.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/test/tap/bugs.js')
-rw-r--r--deps/npm/test/tap/bugs.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/deps/npm/test/tap/bugs.js b/deps/npm/test/tap/bugs.js
index dd2c87e2c6..090c2b9cb2 100644
--- a/deps/npm/test/tap/bugs.js
+++ b/deps/npm/test/tap/bugs.js
@@ -120,7 +120,7 @@ test('npm bugs test-repo-url-http - non-github (http://)', function (t) {
})
})
-test('npm bugs test-repo-url-https - non-github (https://)', function (t) {
+test('npm bugs test-repo-url-https - gitlab (https://)', function (t) {
mr({ port: common.port }, function (er, s) {
common.npm(
[
@@ -136,7 +136,7 @@ test('npm bugs test-repo-url-https - non-github (https://)', function (t) {
t.equal(code, 0, 'exit ok')
var res = fs.readFileSync(outFile, 'ascii')
s.close()
- t.equal(res, 'https://www.npmjs.org/package/test-repo-url-https\n')
+ t.equal(res, 'https://gitlab.com/evanlucas/test-repo-url-https/issues\n')
rimraf.sync(outFile)
t.end()
}
@@ -144,7 +144,7 @@ test('npm bugs test-repo-url-https - non-github (https://)', function (t) {
})
})
-test('npm bugs test-repo-url-ssh - non-github (ssh://)', function (t) {
+test('npm bugs test-repo-url-ssh - gitlab (ssh://)', function (t) {
mr({ port: common.port }, function (er, s) {
common.npm(
[
@@ -160,7 +160,7 @@ test('npm bugs test-repo-url-ssh - non-github (ssh://)', function (t) {
t.equal(code, 0, 'exit ok')
var res = fs.readFileSync(outFile, 'ascii')
s.close()
- t.equal(res, 'https://www.npmjs.org/package/test-repo-url-ssh\n')
+ t.equal(res, 'https://gitlab.com/evanlucas/test-repo-url-ssh/issues\n')
rimraf.sync(outFile)
t.end()
}