diff options
author | Carlos Antonio da Silva <carlosantoniodasilva@gmail.com> | 2013-03-17 08:35:06 -0700 |
---|---|---|
committer | Carlos Antonio da Silva <carlosantoniodasilva@gmail.com> | 2013-03-17 08:35:06 -0700 |
commit | 28cb11045b63147a376655149c38c9c10486085c (patch) | |
tree | b747e8c29b2afb485ce30f0a8440b9806ed67a01 /activesupport | |
parent | e4807f0812d4b49a1a2b5c8e3c0bb5a2062c1151 (diff) | |
parent | c7ea42c24444e8130fd69c0ac679e45c85633668 (diff) | |
download | rails-28cb11045b63147a376655149c38c9c10486085c.tar.gz rails-28cb11045b63147a376655149c38c9c10486085c.tar.bz2 rails-28cb11045b63147a376655149c38c9c10486085c.zip |
Merge pull request #9757 from vipulnsward/remove_message_param
remove unused parameter passed to assert_query_equal method
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/test/core_ext/object/to_query_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/test/core_ext/object/to_query_test.rb b/activesupport/test/core_ext/object/to_query_test.rb index 8d1a8c628c..92f996f9a4 100644 --- a/activesupport/test/core_ext/object/to_query_test.rb +++ b/activesupport/test/core_ext/object/to_query_test.rb @@ -47,7 +47,7 @@ class ToQueryTest < ActiveSupport::TestCase end private - def assert_query_equal(expected, actual, message = nil) + def assert_query_equal(expected, actual) assert_equal expected.split('&'), actual.to_query.split('&') end end |