From f8994603b3058e9514d84ea603e4efae3b5d6986 Mon Sep 17 00:00:00 2001 From: tmm1 Date: Wed, 27 Nov 2013 07:07:59 +0000 Subject: * test/ruby/test_gc.rb (class TestGc): Fix warning in test_expand_heap. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43878 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ test/ruby/test_gc.rb | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index f22e9f086a..6e1f99980d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Wed Nov 27 16:07:19 2013 Aman Gupta + + * test/ruby/test_gc.rb (class TestGc): Fix warning in + test_expand_heap. + Wed Nov 27 15:55:52 2013 Aman Gupta * gc.c (Init_GC): Add new GC::INTERNAL_CONSTANTS for information about diff --git a/test/ruby/test_gc.rb b/test/ruby/test_gc.rb index ce7c5c3927..0d101f609b 100644 --- a/test/ruby/test_gc.rb +++ b/test/ruby/test_gc.rb @@ -202,7 +202,7 @@ class TestGc < Test::Unit::TestCase assert_separately %w[--disable-gem], __FILE__, __LINE__, <<-'eom' GC.start base_length = GC.stat[:heap_eden_page_length] - (base_length * 500).times{ 'a'; nil } + (base_length * 500).times{ 'a' } GC.start assert_equal base_length, GC.stat[:heap_eden_page_length], "invalid heap expanding" -- cgit v1.2.3