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

Merge pull request #4481 from shuujii/fix-missing-assertions-in-mruby-fiber-test

Fix missing assertions in `mruby-fiber` test
parents 729931a0 05056dda
...@@ -76,7 +76,7 @@ assert('Fiber iteration') do ...@@ -76,7 +76,7 @@ assert('Fiber iteration') do
end end
assert('Fiber with splat in the block argument list') { assert('Fiber with splat in the block argument list') {
Fiber.new{|*x|x}.resume(1) == [1] assert_equal([1], Fiber.new{|*x|x}.resume(1))
} }
assert('Fiber raises on resume when dead') do assert('Fiber raises on resume when dead') 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