summaryrefslogtreecommitdiff
path: root/features/steps/shared/diff_note.rb
diff options
context:
space:
mode:
authorVinnie Okada <vokada@mrvinn.com>2014-10-18 18:24:12 -0500
committerVinnie Okada <vokada@mrvinn.com>2014-10-18 18:24:12 -0500
commit74c82ae32583ebf335f310a29ffb22d75b356863 (patch)
tree402248531097bc4ba7d503936acff16936a5d8c1 /features/steps/shared/diff_note.rb
parentf9e423b499795e599d25f76c3ef519cac8ac6db0 (diff)
downloadgitlab-ce-74c82ae32583ebf335f310a29ffb22d75b356863.tar.gz
Fix houndci warnings
Diffstat (limited to 'features/steps/shared/diff_note.rb')
-rw-r--r--features/steps/shared/diff_note.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/features/steps/shared/diff_note.rb b/features/steps/shared/diff_note.rb
index aa31a09e326..7f1dde16c17 100644
--- a/features/steps/shared/diff_note.rb
+++ b/features/steps/shared/diff_note.rb
@@ -152,8 +152,8 @@ module SharedDiffNote
step 'I should see two separate previews' do
within(diff_file_selector) do
expect(page).to have_css('.js-md-preview', count: 2)
- expect(page).to have_content("Should fix it")
- expect(page).to have_content("DRY this up")
+ expect(page).to have_content('Should fix it')
+ expect(page).to have_content('DRY this up')
end
end