Skip to content

Commit

Permalink
Standardize
Browse files Browse the repository at this point in the history
  • Loading branch information
northeastprince committed Nov 10, 2023
1 parent 01862f9 commit 69be6c5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/application_system_test_case.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def sign_in_as(user)

fill_in :email_address, with: user.email_address
click_on "Send Sign In Link"
assert_text /sent/i
assert_text(/sent/i)

visit new_session_path(auth_token: user.authentications.last.token)
end
Expand Down
2 changes: 1 addition & 1 deletion test/system/admin/users_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,6 @@ class Admin::UsersTest < ApplicationSystemTestCase

assert_selector "input[type=email]#user_email_address"

assert_text /taken/i
assert_text(/taken/i)
end
end

0 comments on commit 69be6c5

Please sign in to comment.