aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/hash_with_indifferent_access_test.rb
diff options
context:
space:
mode:
authorSantiago Pastorino <santiago@wyeworks.com>2015-01-17 10:20:58 -0200
committerSantiago Pastorino <santiago@wyeworks.com>2015-01-17 10:20:58 -0200
commit89eb1ae69b64197eccd0eae3a985184acbf4f9ac (patch)
tree27d7f354126973477531a8e2be22d110d9985985 /activesupport/test/hash_with_indifferent_access_test.rb
parent9be89ab2157556aafcd86dc68eb135e3da698964 (diff)
parent9287790df81e6a3cb7fd9697c53b6a060dced154 (diff)
downloadrails-89eb1ae69b64197eccd0eae3a985184acbf4f9ac.tar.gz
rails-89eb1ae69b64197eccd0eae3a985184acbf4f9ac.tar.bz2
rails-89eb1ae69b64197eccd0eae3a985184acbf4f9ac.zip
Merge pull request #18562 from vipulnsward/fix-broken-hwai-frozen-tet
Fix hwia isolated tests
Diffstat (limited to 'activesupport/test/hash_with_indifferent_access_test.rb')
-rw-r--r--activesupport/test/hash_with_indifferent_access_test.rb8
1 files changed, 1 insertions, 7 deletions
diff --git a/activesupport/test/hash_with_indifferent_access_test.rb b/activesupport/test/hash_with_indifferent_access_test.rb
index 880457386e..1facd691fa 100644
--- a/activesupport/test/hash_with_indifferent_access_test.rb
+++ b/activesupport/test/hash_with_indifferent_access_test.rb
@@ -8,10 +8,4 @@ class HashWithIndifferentAccessTest < ActiveSupport::TestCase
assert_equal :old_value, hash[:key]
end
- def test_frozen_value
- value = [1, 2, 3].freeze
- hash = {}.with_indifferent_access
- hash[:key] = value
- assert_equal hash[:key], value
- end
-end \ No newline at end of file
+end