diff options
author | Vipul A M <vipulnsward@gmail.com> | 2013-03-17 15:15:00 +0530 |
---|---|---|
committer | Vipul A M <vipulnsward@gmail.com> | 2013-03-17 15:15:00 +0530 |
commit | c7ea42c24444e8130fd69c0ac679e45c85633668 (patch) | |
tree | 774e15fa6b6d254d1e54a1ab0d7f5a5328c7f31b /activesupport | |
parent | f5ecb133335dbfcb2322e5ce91158cf91f730aea (diff) | |
download | rails-c7ea42c24444e8130fd69c0ac679e45c85633668.tar.gz rails-c7ea42c24444e8130fd69c0ac679e45c85633668.tar.bz2 rails-c7ea42c24444e8130fd69c0ac679e45c85633668.zip |
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 |