summaryrefslogtreecommitdiff
path: root/spec/restful/login.js
diff options
context:
space:
mode:
Diffstat (limited to 'spec/restful/login.js')
-rw-r--r--spec/restful/login.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/restful/login.js b/spec/restful/login.js
index 9c43c00..4df62a8 100644
--- a/spec/restful/login.js
+++ b/spec/restful/login.js
@@ -52,9 +52,9 @@ describe("Login", function() {
var success = sinon.spy();
this.srp.identify(success);
- this.expectRequest('sessions', 'login=' +login+ '&A=' +A, 'POST');
+ this.expectRequest('sessions.json', 'login=' +login+ '&A=' +A, 'POST');
this.respondJSON({salt: salt, B: B});
- this.expectRequest('sessions/'+login, 'client_auth='+M, 'PUT');
+ this.expectRequest('sessions/'+login+'.json', 'client_auth='+M, 'PUT');
this.respondJSON({M2: M2});
expect(success).toHaveBeenCalled();
@@ -65,7 +65,7 @@ describe("Login", function() {
var error = sinon.spy();
this.srp.identify(success, error);
- this.expectRequest('sessions', 'login=' +login+ '&A=' +A, 'POST');
+ this.expectRequest('sessions.json', 'login=' +login+ '&A=' +A, 'POST');
this.respondJSON({salt: salt, B: 0});
// aborting if B=0
expect(this.requests).toEqual([]);