aboutsummaryrefslogtreecommitdiffstats
path: root/test/ruby/test_hash.rb
diff options
context:
space:
mode:
authorJeremy Evans <code@jeremyevans.net>2020-09-21 15:02:20 -0700
committerJeremy Evans <code@jeremyevans.net>2020-09-21 19:35:08 -0700
commitdf14c758fc705c49c2aaf4c9276a8f7229438fbf (patch)
tree49ef6a8a7885a5712e4bac94c99f861ab955f05e /test/ruby/test_hash.rb
parent7ee166ed4e8da7677d7b7f4706907eac89af4da6 (diff)
downloadruby-df14c758fc705c49c2aaf4c9276a8f7229438fbf.tar.gz
Make hash returned by Hash#transform_values not have a default
This sets an explicit default of nil. There is probably a better approach of removing the default. Fixes [Bug #17181]
Diffstat (limited to 'test/ruby/test_hash.rb')
-rw-r--r--test/ruby/test_hash.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/ruby/test_hash.rb b/test/ruby/test_hash.rb
index e63fdf32fd..91e14daf2c 100644
--- a/test/ruby/test_hash.rb
+++ b/test/ruby/test_hash.rb
@@ -1696,6 +1696,7 @@ class TestHash < Test::Unit::TestCase
x.default_proc = proc {|h, k| k}
y = x.transform_values {|v| v ** 2 }
assert_nil(y.default_proc)
+ assert_nil(y.default)
y = x.transform_values.with_index {|v, i| "#{v}.#{i}" }
assert_equal(%w(1.0 2.1 3.2), y.values_at(:a, :b, :c))