diff options
author | Vinnie Okada <vokada@mrvinn.com> | 2014-10-18 18:24:12 -0500 |
---|---|---|
committer | Vinnie Okada <vokada@mrvinn.com> | 2014-10-18 18:24:12 -0500 |
commit | 74c82ae32583ebf335f310a29ffb22d75b356863 (patch) | |
tree | 402248531097bc4ba7d503936acff16936a5d8c1 /features/steps/shared/note.rb | |
parent | f9e423b499795e599d25f76c3ef519cac8ac6db0 (diff) | |
download | gitlab-ce-74c82ae32583ebf335f310a29ffb22d75b356863.tar.gz |
Fix houndci warnings
Diffstat (limited to 'features/steps/shared/note.rb')
-rw-r--r-- | features/steps/shared/note.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/features/steps/shared/note.rb b/features/steps/shared/note.rb index 9802614ec72..52d8c7e50fa 100644 --- a/features/steps/shared/note.rb +++ b/features/steps/shared/note.rb @@ -35,7 +35,7 @@ module SharedNote step 'I write a comment like ":+1: Nice"' do within(".js-main-target-form") do - fill_in "note[note]", with: ":+1: Nice" + fill_in 'note[note]', with: ':+1: Nice' end end |