summaryrefslogtreecommitdiff
path: root/test/integration/browser/account_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/browser/account_test.rb')
-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