summaryrefslogtreecommitdiff
path: root/spec/features/projects/diffs/diff_show_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/features/projects/diffs/diff_show_spec.rb')
-rw-r--r--spec/features/projects/diffs/diff_show_spec.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/features/projects/diffs/diff_show_spec.rb b/spec/features/projects/diffs/diff_show_spec.rb
index df05625d105..99b35945741 100644
--- a/spec/features/projects/diffs/diff_show_spec.rb
+++ b/spec/features/projects/diffs/diff_show_spec.rb
@@ -46,7 +46,7 @@ describe 'Diff file viewer', :js do
end
it 'shows an error message' do
- expect(page).to have_content('This source diff could not be displayed because it is stored in LFS. You can view the blob instead.')
+ expect(page).to have_content(_('This source diff could not be displayed because it is stored in LFS. You can view the blob instead.'))
end
end
@@ -161,12 +161,12 @@ describe 'Diff file viewer', :js do
end
it 'shows the diff is collapsed' do
- expect(page).to have_content('This diff is collapsed. Click to expand it.')
+ expect(page).to have_content(_('This diff is collapsed. Click to expand it.'))
end
context 'expanding the diff' do
before do
- click_button 'Click to expand it.'
+ click_button _('Click to expand it.')
wait_for_requests
end