aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/hash_with_indifferent_access_test.rb
diff options
context:
space:
mode:
authorbogdanvlviv <bogdanvlviv@gmail.com>2018-02-17 18:16:15 +0200
committerJeremy Daer <jeremydaer@gmail.com>2018-02-17 13:09:30 -0800
commit2bfef0d21f8e8ba666a0bccc82a722f339923c1d (patch)
tree16312b449deefefc562b705c135eb0ced2256f9c /activesupport/test/hash_with_indifferent_access_test.rb
parentdebe9a5cbe32dcf31580413ef73b811e8c8e13be (diff)
downloadrails-2bfef0d21f8e8ba666a0bccc82a722f339923c1d.tar.gz
rails-2bfef0d21f8e8ba666a0bccc82a722f339923c1d.tar.bz2
rails-2bfef0d21f8e8ba666a0bccc82a722f339923c1d.zip
Remove extra conditions in HWIDA since Rails 6 does not support Ruby 2.2
See https://github.com/ruby/ruby/blob/ruby_2_3/NEWS
Diffstat (limited to 'activesupport/test/hash_with_indifferent_access_test.rb')
-rw-r--r--activesupport/test/hash_with_indifferent_access_test.rb2
1 files changed, 0 insertions, 2 deletions
diff --git a/activesupport/test/hash_with_indifferent_access_test.rb b/activesupport/test/hash_with_indifferent_access_test.rb
index 72c2f1fb8d..b06250baf8 100644
--- a/activesupport/test/hash_with_indifferent_access_test.rb
+++ b/activesupport/test/hash_with_indifferent_access_test.rb
@@ -169,8 +169,6 @@ class HashWithIndifferentAccessTest < ActiveSupport::TestCase
end
def test_indifferent_fetch_values
- skip unless Hash.method_defined?(:fetch_values)
-
@mixed = @mixed.with_indifferent_access
assert_equal [1, 2], @mixed.fetch_values("a", "b")