From fe2dc3101ee178aed748ba4dee92cd8c059f2145 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bar=C4=B1=C5=9F=20Soner=20U=C5=9Fakl=C4=B1?= Date: Mon, 21 Sep 2020 11:45:12 -0400 Subject: [PATCH] fix: auth tests --- test/authentication.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/authentication.js b/test/authentication.js index 818fc9dfe2..8cc9bf2af1 100644 --- a/test/authentication.js +++ b/test/authentication.js @@ -165,7 +165,7 @@ describe('authentication', function () { assert(body); request({ - url: nconf.get('url') + '/api/me', + url: nconf.get('url') + '/api/self', json: true, jar: jar, }, function (err, response, body) { @@ -204,7 +204,7 @@ describe('authentication', function () { assert.ifError(err); assert(body); request({ - url: nconf.get('url') + '/api/me', + url: nconf.get('url') + '/api/self', json: true, jar: jar, }, function (err, response, body) {