Skip to content

Commit e9a3416

Browse files
committed
Fix double quotes and blank line for rubocop
1 parent f00896b commit e9a3416

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

test/application_system_test_case.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -100,13 +100,13 @@ def post_form_select_tag(tag_name, create_new = false)
100100

101101
def create_post(button_label, body, title, tags)
102102
click_button(button_label)
103-
fill_in("Body", with: body)
104-
fill_in("Summarize your post with a title:", with: title)
103+
fill_in('Body', with: body)
104+
fill_in('Summarize your post with a title:', with: title)
105105

106106
tags.each do |tag|
107107
post_form_select_tag(tag)
108108
end
109109

110-
click_button("Save Post in ")
110+
click_button('Save Post in ')
111111
end
112112
end

test/system/ci_failures_test.rb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ class CIFailuresTest < ApplicationSystemTestCase
55
assert true
66
end
77

8-
98
test 'Anyone can view question' do
109
post = posts(:question_one)
1110
visit post_url(post)

0 commit comments

Comments
 (0)