From 78d2a437ff51664a935d2d83471f88a693eb0184 Mon Sep 17 00:00:00 2001 From: Florian Weingarten Date: Thu, 11 Apr 2019 11:20:47 +0100 Subject: [PATCH] rubocop --- test/integration/standard_filter_test.rb | 6 +++--- test/integration/tags/if_else_tag_test.rb | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) 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|