mirror of
https://github.com/Shopify/liquid.git
synced 2026-09-18 02:10:41 -07:00
rubocop autocorrect Style/MethodCallWithArgsParentheses
This commit is contained in:
@@ -133,7 +133,7 @@ class ProfilerTest < Minitest::Test
|
||||
|
||||
include_node = t.profiler[1]
|
||||
include_node.children.each do |child|
|
||||
assert_equal "a_template", child.partial
|
||||
assert_equal("a_template", child.partial)
|
||||
end
|
||||
end
|
||||
|
||||
@@ -143,12 +143,12 @@ class ProfilerTest < Minitest::Test
|
||||
|
||||
a_template = t.profiler[1]
|
||||
a_template.children.each do |child|
|
||||
assert_equal "a_template", child.partial
|
||||
assert_equal("a_template", child.partial)
|
||||
end
|
||||
|
||||
b_template = t.profiler[2]
|
||||
b_template.children.each do |child|
|
||||
assert_equal "b_template", child.partial
|
||||
assert_equal("b_template", child.partial)
|
||||
end
|
||||
end
|
||||
|
||||
@@ -158,12 +158,12 @@ class ProfilerTest < Minitest::Test
|
||||
|
||||
a_template1 = t.profiler[1]
|
||||
a_template1.children.each do |child|
|
||||
assert_equal "a_template", child.partial
|
||||
assert_equal("a_template", child.partial)
|
||||
end
|
||||
|
||||
a_template2 = t.profiler[2]
|
||||
a_template2.children.each do |child|
|
||||
assert_equal "a_template", child.partial
|
||||
assert_equal("a_template", child.partial)
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
Reference in New Issue
Block a user