summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authortmm1 <tmm1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-11-27 07:07:59 +0000
committertmm1 <tmm1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-11-27 07:07:59 +0000
commitf8994603b3058e9514d84ea603e4efae3b5d6986 (patch)
tree3c8ed3ca809922e9abe089f203846324b755dd17 /test
parent0094b7bb6822fb230cc3475d49faff15674bb886 (diff)
* 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
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_gc.rb2
1 files changed, 1 insertions, 1 deletions
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"