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

* remove trailing spaces. [ci skip]

This commit is contained in:
git 2021-05-12 17:40:52 +09:00
parent 523a6998dd
commit 81513c9dab

View file

@ -108,7 +108,7 @@ class TestObjSpace < Test::Unit::TestCase
def test_memsize_of_iseq
iseqw = RubyVM::InstructionSequence.compile('def a; a = :b; a; end')
# Use anonymous class as a basic object size because size of Object.new can be increased
base_obj_size = ObjectSpace.memsize_of(Class.new.new)
base_obj_size = ObjectSpace.memsize_of(Class.new.new)
assert_operator(ObjectSpace.memsize_of(iseqw), :>, base_obj_size)
end