summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-08-09 07:36:14 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-08-09 07:36:14 +0000
commit9a9569b1c28cdedd27f3b49b9b8d2497c2585593 (patch)
treebfee1359d765e5f33e092791dd6204f631c2b81e /test
parent303dc3c591e324b6bbc691326d8bea76fe3b8fda (diff)
test_objectspace.rb: errors in a finalizer
* test/ruby/test_objectspace.rb (test_finalizer_with_super): adjust number of arguments to get rid of errors in a finalizer. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55845 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_objectspace.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_objectspace.rb b/test/ruby/test_objectspace.rb
index b2ab817fba..c352b75b70 100644
--- a/test/ruby/test_objectspace.rb
+++ b/test/ruby/test_objectspace.rb
@@ -103,7 +103,7 @@ End
end
FINALIZER = proc do
- M.module_eval do
+ M.module_eval(__FILE__, "", __LINE__) do
end
end