Unverified Commit 3b061a90 authored by Yukihiro "Matz" Matsumoto's avatar Yukihiro "Matz" Matsumoto Committed by GitHub

Merge pull request #4485 from shuujii/fix-missing-assertions-in-mruby-objectspace-test

Fix missing assertions in `mruby-objectspace` test
parents 366617db 92f00d3e
...@@ -56,5 +56,5 @@ assert('ObjectSpace.each_object') do ...@@ -56,5 +56,5 @@ assert('ObjectSpace.each_object') do
end end
assert 'Check class pointer of ObjectSpace.each_object.' do assert 'Check class pointer of ObjectSpace.each_object.' do
ObjectSpace.each_object { |obj| !obj } assert_nothing_raised { ObjectSpace.each_object { |obj| !obj } }
end end
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