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 3bf9dda..0f6aa4f 100644
--- a/spec/restful/login.js
+++ b/spec/restful/login.js
@@ -49,21 +49,21 @@ describe("Login", function() {
this.expectRequest('sessions', 'login=' +login+ '&A=' +A, 'POST');
this.respondJSON({s: salt, B: B});
- this.expectRequest('sessions/'+login, 'client_auth='+M);
+ this.expectRequest('sessions/'+login, 'client_auth='+M, 'PUT');
this.respondJSON({M: M2});
expect(this.srp.success).toHaveBeenCalled();
});
it("rejects B = 0", function(){
- this.srp.error_message = sinon.spy();
+ this.srp.error = sinon.spy();
this.srp.identify();
this.expectRequest('sessions', 'login=' +login+ '&A=' +A, 'POST');
this.respondJSON({s: salt, B: 0});
// aborting if B=0
expect(this.requests).toEqual([]);
- expect(this.srp.error_message).toHaveBeenCalled();
+ expect(this.srp.error).toHaveBeenCalled();
});
});