diff options
author | Azul <azul@leap.se> | 2014-05-28 11:44:12 +0200 |
---|---|---|
committer | Azul <azul@leap.se> | 2014-05-28 11:44:12 +0200 |
commit | 682b4060cb86c52ffda638f4f9a837f107540610 (patch) | |
tree | 5c5158707825d6461efa8404dfed73b237833c8b /test/integration/browser/account_test.rb | |
parent | 5c8ab9298cc4705de508a3f3f9d9d6370a01ff5e (diff) |
ensure identity is cleared on user.reload - fixes test
Diffstat (limited to 'test/integration/browser/account_test.rb')
-rw-r--r-- | test/integration/browser/account_test.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/integration/browser/account_test.rb b/test/integration/browser/account_test.rb index 82bb043..8e6d433 100644 --- a/test/integration/browser/account_test.rb +++ b/test/integration/browser/account_test.rb @@ -109,7 +109,8 @@ class AccountTest < BrowserIntegrationTest # at some point we're done: page.assert_no_selector 'input[value="Saving..."]' assert page.has_field? 'Public key', with: pgp_key.to_s - assert_equal pgp_key, @user.reload.public_key + @user.reload + assert_equal pgp_key, @user.public_key end end |