diff options
author | Vishnu Atrai <me@vishnuatrai.com> | 2012-03-03 23:48:29 +0530 |
---|---|---|
committer | Vishnu Atrai <me@vishnuatrai.com> | 2012-03-03 23:48:29 +0530 |
commit | d8996d3cab5657358656b572f3096a0a14bf0ccb (patch) | |
tree | bd8255ebc5ef11c195532d660de74975e18426f8 /activesupport/test/core_ext/object | |
parent | 2aec357b7e8e310be107b479224524f12f83d5a5 (diff) | |
download | rails-d8996d3cab5657358656b572f3096a0a14bf0ccb.tar.gz rails-d8996d3cab5657358656b572f3096a0a14bf0ccb.tar.bz2 rails-d8996d3cab5657358656b572f3096a0a14bf0ccb.zip |
remove usages of AS::OrderedHash
Diffstat (limited to 'activesupport/test/core_ext/object')
-rw-r--r-- | activesupport/test/core_ext/object/to_query_test.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/activesupport/test/core_ext/object/to_query_test.rb b/activesupport/test/core_ext/object/to_query_test.rb index 6a26e1fa4f..c34647c1df 100644 --- a/activesupport/test/core_ext/object/to_query_test.rb +++ b/activesupport/test/core_ext/object/to_query_test.rb @@ -28,12 +28,12 @@ class ToQueryTest < ActiveSupport::TestCase def test_nested_conversion assert_query_equal 'person%5Blogin%5D=seckar&person%5Bname%5D=Nicholas', - :person => ActiveSupport::OrderedHash[:login, 'seckar', :name, 'Nicholas'] + :person => Hash[:login, 'seckar', :name, 'Nicholas'] end def test_multiple_nested assert_query_equal 'account%5Bperson%5D%5Bid%5D=20&person%5Bid%5D=10', - ActiveSupport::OrderedHash[:account, {:person => {:id => 20}}, :person, {:id => 10}] + Hash[:account, {:person => {:id => 20}}, :person, {:id => 10}] end def test_array_values |