summaryrefslogtreecommitdiff
path: root/spec/features/users/show_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/features/users/show_spec.rb')
-rw-r--r--spec/features/users/show_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/features/users/show_spec.rb b/spec/features/users/show_spec.rb
index 86379164cf0..fed57666c0d 100644
--- a/spec/features/users/show_spec.rb
+++ b/spec/features/users/show_spec.rb
@@ -56,11 +56,11 @@ describe 'User page' do
end
it 'shows the status if there was one' do
- create(:user_status, user: user, message: "Working hard!")
+ create(:user_status, user: user, message: _("Working hard!"))
visit(user_path(user))
- expect(page).to have_content("Working hard!")
+ expect(page).to have_content(_("Working hard!"))
end
context 'signup disabled' do