summaryrefslogtreecommitdiffstats
path: root/test/ruby/test_iterator.rb
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-10-20 08:33:49 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-10-20 08:33:49 +0000
commit6139f3ebed65764ba7aa7869ad8ecaec872cebc3 (patch)
tree8c8b6e6962798bc57a9519a6f140b79c009ee050 /test/ruby/test_iterator.rb
parentd102618382ed7114eb64ffcafdfa9e64bac5e0b3 (diff)
downloadruby-6139f3ebed65764ba7aa7869ad8ecaec872cebc3.tar.gz
ruby-6139f3ebed65764ba7aa7869ad8ecaec872cebc3.tar.xz
ruby-6139f3ebed65764ba7aa7869ad8ecaec872cebc3.zip
* eval.c (PUSH_FRAME): generate unique number to be TAG_JUMP()
destination. * eval.c (localjump_destination): use unique number in ruby_frame for localjump destination. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4811 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby/test_iterator.rb')
-rw-r--r--test/ruby/test_iterator.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_iterator.rb b/test/ruby/test_iterator.rb
index f91bf8164..60bfad50a 100644
--- a/test/ruby/test_iterator.rb
+++ b/test/ruby/test_iterator.rb
@@ -419,7 +419,7 @@ class TestIterator < Test::Unit::TestCase
def test_return_trace_func
ok = "returned gracefully"
result = "skipped"
- result = _test_return_from_builtin(ok)
+ result = _test_return_trace_func(ok)
ensure
assert_equal(ok, result)
return