diff options
Diffstat (limited to 'users/test/integration/browser')
-rw-r--r-- | users/test/integration/browser/account_test.rb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/users/test/integration/browser/account_test.rb b/users/test/integration/browser/account_test.rb index a112430..4fff637 100644 --- a/users/test/integration/browser/account_test.rb +++ b/users/test/integration/browser/account_test.rb @@ -12,8 +12,7 @@ class AccountTest < BrowserIntegrationTest fill_in 'Password', with: password fill_in 'Password confirmation', with: password click_on 'Sign Up' - assert page.has_content?("Welcome #{username}"), - "failed to verify server. expected M2: #{page.evaluate_script("srp.session.getM2();")}" + assert page.has_content?("Welcome #{username}") click_on 'Logout' assert_equal '/', current_path end |