diff options
author | Zachary Anker <zanker@squareup.com> | 2017-09-12 12:52:15 -0700 |
---|---|---|
committer | Zachary Anker <zanker@squareup.com> | 2017-09-20 11:39:46 -0700 |
commit | 87714836e328ca3f98c93a451be26bfd35e804b7 (patch) | |
tree | d2c626e4851ab2eb99d1c54dddf16a2de5bb17f5 /ruby/compatibility_tests | |
parent | 06aa8dc9e730cc39c67d0ff9c0c95e645ccf03c9 (diff) |
Allow initializing a chain of protos using only a hash
Diffstat (limited to 'ruby/compatibility_tests')
-rw-r--r-- | ruby/compatibility_tests/v3.0.0/tests/basic.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ruby/compatibility_tests/v3.0.0/tests/basic.rb b/ruby/compatibility_tests/v3.0.0/tests/basic.rb index f81e456c..05fe0278 100644 --- a/ruby/compatibility_tests/v3.0.0/tests/basic.rb +++ b/ruby/compatibility_tests/v3.0.0/tests/basic.rb @@ -600,7 +600,7 @@ module BasicTest assert_raise RangeError do m["z"] = :Z end - assert_raise TypeError do + assert_raise RangeError do m["z"] = "z" end end |