Commit 4da687a6 authored by KOBAYASHI Shuji's avatar KOBAYASHI Shuji

Use `__send__` instead of `send` in a Range test.

This assertion is accidentaly passed because `send` was removed from mruby
core so `NoMethodError` is raised and `NoMethodError` is subclass of
`NameError`.
parent b04506cd
......@@ -59,7 +59,7 @@ assert('Range#initialize', '15.2.14.4.9') do
assert_equal (1..10), b
assert_false b.exclude_end?
assert_raise(NameError) { (0..1).send(:initialize, 1, 3) }
assert_raise(NameError) { (0..1).__send__(:initialize, 1, 3) }
end
assert('Range#last', '15.2.14.4.10') do
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment