Skip to content

Commit

Permalink
epi-1207 plus updating two auth mgr groups login tests that hadn't be…
Browse files Browse the repository at this point in the history
…en merged / that had only been fixed in dms3-version branch
  • Loading branch information
Molly Jones committed Sep 15, 2016
1 parent f20de57 commit 75699ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/spec/test-auth-manager.js
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@
am.login({ userName: 'test', password: 'test' }).done(function (response) {
var req = server.requests.pop();
req.method.toUpperCase().should.equal('GET');
req.url.should.match(/https:\/\/api\.forio\.com\/group\/local\/?/);
req.url.should.match(/https:\/\/api\.forio\.com\/(.*)\/group\/local\/?/);

var session = am.getCurrentUserSessionInfo();
session.groupName.should.equal('rv-test');
Expand All @@ -226,7 +226,7 @@
}).fail(function (data) {
var req = server.requests.pop();
req.method.toUpperCase().should.equal('GET');
req.url.should.match(/https:\/\/api\.forio\.com\/group\/local\/?/);
req.url.should.match(/https:\/\/api\.forio\.com\/(.*)\/group\/local\/?/);

multipleGroupsResponse = false;
teamMemberResponse = false;
Expand Down

0 comments on commit 75699ca

Please sign in to comment.