summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAzul <azul@leap.se>2014-05-28 11:44:12 +0200
committerAzul <azul@leap.se>2014-05-28 11:44:12 +0200
commit682b4060cb86c52ffda638f4f9a837f107540610 (patch)
tree5c5158707825d6461efa8404dfed73b237833c8b /test
parent5c8ab9298cc4705de508a3f3f9d9d6370a01ff5e (diff)
ensure identity is cleared on user.reload - fixes test
Diffstat (limited to 'test')
-rw-r--r--test/integration/browser/account_test.rb3
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