diff --git a/test/integration/standard_filter_test.rb b/test/integration/standard_filter_test.rb index 6090951..e0cbe46 100644 --- a/test/integration/standard_filter_test.rb +++ b/test/integration/standard_filter_test.rb @@ -405,11 +405,11 @@ class StandardFiltersTest < Minitest::Test def test_map_over_drops_returning_procs drops = [ { - "proc" => ->{ "foo" }, + "proc" => ->{ "foo" } }, { - "proc" => ->{ "bar" }, - }, + "proc" => ->{ "bar" } + } ] templ = '{{ drops | map: "proc" }}' assert_template_result "foobar", templ, "drops" => drops diff --git a/test/integration/tags/if_else_tag_test.rb b/test/integration/tags/if_else_tag_test.rb index 45a5d3a..eb976ce 100644 --- a/test/integration/tags/if_else_tag_test.rb +++ b/test/integration/tags/if_else_tag_test.rb @@ -176,7 +176,7 @@ class IfElseTagTest < Minitest::Test [false, true, true] => true, [false, true, false] => false, [false, false, true] => false, - [false, false, false] => false, + [false, false, false] => false } tests.each do |vals, expected|