From 28b3582aa2cd6007c708134b911b3f360ad5d659 Mon Sep 17 00:00:00 2001 From: Leonel Galan Date: Mon, 13 Feb 2017 20:16:03 -0500 Subject: Fixes CodeClimate warnings --- actionpack/test/dispatch/request_test.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'actionpack') diff --git a/actionpack/test/dispatch/request_test.rb b/actionpack/test/dispatch/request_test.rb index baa4a0b3b4..7e194c5d8b 100644 --- a/actionpack/test/dispatch/request_test.rb +++ b/actionpack/test/dispatch/request_test.rb @@ -1100,8 +1100,8 @@ class RequestParameterFilter < BaseRequestTest test "parameter filter should maintain hash with indifferent access" do test_hashes = [ - [{'foo'=>'bar'}.with_indifferent_access, %w'food'], - [{'foo'=>'bar'}.with_indifferent_access, []] + [{ "foo" => "bar" }.with_indifferent_access, ["blah"]], + [{ "foo" => "bar" }.with_indifferent_access, []] ] test_hashes.each do |before_filter, filter_words| -- cgit v1.2.3