Skip to content

Commit

Permalink
fix: auth tests
Browse files Browse the repository at this point in the history
  • Loading branch information
barisusakli committed Sep 21, 2020
1 parent af43f0e commit fe2dc31
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/authentication.js
Expand Up @@ -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) {
Expand Down Expand Up @@ -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) {
Expand Down

0 comments on commit fe2dc31

Please sign in to comment.