diff options
author | Azul <azul@leap.se> | 2013-07-16 13:14:01 +0200 |
---|---|---|
committer | Azul <azul@leap.se> | 2013-07-16 13:14:01 +0200 |
commit | 8486248a7a960bc75f25f2c5a00791416f124ac4 (patch) | |
tree | be7eba0f71b6308dbbceb5d4fd9c6f3802c96967 | |
parent | f40c09a8b750d5d317a22af7186bde5c940b6924 (diff) |
adapt srp account_flow test for the api to new ruby_srp API
-rw-r--r-- | users/test/integration/api/account_flow_test.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/users/test/integration/api/account_flow_test.rb b/users/test/integration/api/account_flow_test.rb index f5cb0b1..4c94389 100644 --- a/users/test/integration/api/account_flow_test.rb +++ b/users/test/integration/api/account_flow_test.rb @@ -26,19 +26,19 @@ class AccountFlowTest < RackTest def handshake(login, aa) post "http://api.lvh.me:3000/1/sessions.json", :login => login, - 'A' => aa.to_s(16), + 'A' => aa, :format => :json response = JSON.parse(last_response.body) if response['errors'] raise RECORD_NOT_FOUND.new(response['errors']) else - return response['B'].hex + return response['B'] end end def validate(m) put "http://api.lvh.me:3000/1/sessions/" + @login + '.json', - :client_auth => m.to_s(16), + :client_auth => m, :format => :json return JSON.parse(last_response.body) end |