mruby-object-ext/test: call #remove_const via #__send__

This commit is contained in:
Yukihiro "Matz" Matsumoto
2025-02-14 09:35:47 +09:00
parent 4d547b6cbb
commit cce8f62b21
+2 -2
View File
@@ -35,7 +35,7 @@ assert('instance_exec on primitives with class and module definition') do
assert_kind_of Class, A::B
ensure
Object.remove_const :A
Object.__send__(:remove_const,:A)
end
begin
@@ -48,7 +48,7 @@ assert('instance_exec on primitives with class and module definition') do
assert_kind_of Module, A::B
ensure
Object.remove_const :A
Object.__send__(:remove_const,:A)
end
end