summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAzul <azul@riseup.net>2012-10-02 14:29:20 +0200
committerAzul <azul@riseup.net>2012-10-02 14:29:20 +0200
commit7791caac4f3dc8f9b2fcca394ad9ce0cd12b6996 (patch)
tree8f568cec43d246bf5d8be0ff9b32690731c9fabc
parentd6a78049f3356d9d645143362eca74434410bf62 (diff)
fixed restful signup test
-rw-r--r--spec/restful/signup.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/restful/signup.js b/spec/restful/signup.js
index b1ed7e8..e214508 100644
--- a/spec/restful/signup.js
+++ b/spec/restful/signup.js
@@ -16,7 +16,7 @@ describe("Signup", function() {
it("identifies after successful registration (INTEGRATION)", function(){
var callback = sinon.spy();
this.srp.identify = callback;
- this.srp.getSalt = function() {return "5d3055e0acd3ddcfc15"};
+ this.srp.session.getSalt = function() {return "5d3055e0acd3ddcfc15"};
this.srp.register();
this.expectRequest('users', "user[login]=user&user[password_salt]=5d3055e0acd3ddcfc15&user[password_verifier]=adcd57b4a4a05c2e205b0b7b30014d9ff635d8d8db2f502f08e9b9c132800c44")
this.respondJSON({password_salt: "5d3055e0acd3ddcfc15", login: "user", ok: "true"});