mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
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`.
This commit is contained in:
+1
-1
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user