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

Fix missing assertions in `mruby-fiber` test
This commit is contained in:
Yukihiro "Matz" Matsumoto
2019-05-30 22:34:54 +09:00
committed by GitHub
+1 -1
View File
@@ -76,7 +76,7 @@ assert('Fiber iteration') do
end
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