Skip to content

Commit

Permalink
Added missing full stop "." on registrations.updated_but_not_signed_in.
Browse files Browse the repository at this point in the history
  • Loading branch information
bipashant committed Nov 23, 2020
1 parent 45b831c commit fd03f9e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config/locales/en.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ en:
signed_up_but_unconfirmed: "A message with a confirmation link has been sent to your email address. Please follow the link to activate your account."
update_needs_confirmation: "You updated your account successfully, but we need to verify your new email address. Please check your email and follow the confirmation link to confirm your new email address."
updated: "Your account has been updated successfully."
updated_but_not_signed_in: "Your account has been updated successfully, but since your password was changed, you need to sign in again"
updated_but_not_signed_in: "Your account has been updated successfully, but since your password was changed, you need to sign in again."
sessions:
signed_in: "Signed in successfully."
signed_out: "Signed out successfully."
Expand Down
2 changes: 1 addition & 1 deletion test/integration/registerable_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ def user_sign_up
fill_in 'current password', with: '12345678'
click_button 'Update'

assert_contain 'Your account has been updated successfully, but since your password was changed, you need to sign in again'
assert_contain 'Your account has been updated successfully, but since your password was changed, you need to sign in again.'
assert_equal new_user_session_path, @request.path
refute warden.authenticated?(:user)
end
Expand Down

0 comments on commit fd03f9e

Please sign in to comment.