Commit 2bb0eecb authored by Grzegorz Bizon's avatar Grzegorz Bizon

Enable Style/SpaceAfterMethodName rubocop cop

See #17478
parent 43c35b0f
...@@ -541,7 +541,7 @@ Style/SpaceAfterComma: ...@@ -541,7 +541,7 @@ Style/SpaceAfterComma:
# Do not put a space between a method name and the opening parenthesis in a # Do not put a space between a method name and the opening parenthesis in a
# method definition. # method definition.
Style/SpaceAfterMethodName: Style/SpaceAfterMethodName:
Enabled: false Enabled: true
# Tracks redundant space after the ! operator. # Tracks redundant space after the ! operator.
Style/SpaceAfterNot: Style/SpaceAfterNot:
......
...@@ -567,7 +567,7 @@ class Spinach::Features::ProjectMergeRequests < Spinach::FeatureSteps ...@@ -567,7 +567,7 @@ class Spinach::Features::ProjectMergeRequests < Spinach::FeatureSteps
click_diff_line(sample_compare.changes[1][:line_code]) click_diff_line(sample_compare.changes[1][:line_code])
end end
def have_visible_content (text) def have_visible_content(text)
have_css("*", text: text, visible: true) have_css("*", text: text, visible: true)
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment