1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Removed trailing spaces [ci skip]

This commit is contained in:
Nobuyoshi Nakada 2020-05-14 19:57:39 +09:00
parent 0e3b0fcdba
commit 634eeb4353
No known key found for this signature in database
GPG key ID: 7CD2805BFA3770C6
3 changed files with 5 additions and 5 deletions

View file

@ -52,13 +52,13 @@ class TestStack < Test::Unit::TestCase
def test_vm_stack_size
script = '$stdout.sync=true; def rec; print "."; rec; end; Fiber.new{rec}.resume'
size_default = invoke_ruby(script).bytesize
assert_operator(size_default, :>, 0)
size_0 = invoke_ruby(script, vm_stack_size: 0).bytesize
assert_operator(size_default, :>, size_0)
size_large = invoke_ruby(script, vm_stack_size: LARGE_VM_STACK_SIZE).bytesize
assert_operator(size_default, :<, size_large)
end