aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/ordered_hash_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activesupport/test/ordered_hash_test.rb')
-rw-r--r--activesupport/test/ordered_hash_test.rb5
1 files changed, 2 insertions, 3 deletions
diff --git a/activesupport/test/ordered_hash_test.rb b/activesupport/test/ordered_hash_test.rb
index fc467b41de..89855814d7 100644
--- a/activesupport/test/ordered_hash_test.rb
+++ b/activesupport/test/ordered_hash_test.rb
@@ -259,8 +259,7 @@ class OrderedHashTest < Test::Unit::TestCase
end
def test_invert
- @ordered_hash = ActiveSupport::OrderedHash[[["foo", "FOO"], ["bar", "BAR"]]]
- @inverted_ordered_hash = @ordered_hash.invert
- assert_equal [["FOO", "foo"], ["BAR", "bar"]], @inverted_ordered_hash.to_a
+ assert_kind_of ActiveSupport::OrderedHash, @ordered_hash.invert
+ assert_equal @values.zip(@keys), @ordered_hash.invert.to_a
end
end