summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorshugo <shugo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-03-15 08:47:09 +0000
committershugo <shugo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-03-15 08:47:09 +0000
commitff1f6107f98261774739a6824fa80b1eba7b58ef (patch)
treeff0055f52349dacd13934e94753eb3b0f942ee5b /test
parent4a1db362f0c716dfdca7289a8c61d160b8356093 (diff)
* enumerator.c (InitVM_Enumerator): renamed Enumerable::Lazy to
Enumerator::Lazy. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35040 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_lazy_enumerator.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_lazy_enumerator.rb b/test/ruby/test_lazy_enumerator.rb
index 1c0096f88c..7450875fc0 100644
--- a/test/ruby/test_lazy_enumerator.rb
+++ b/test/ruby/test_lazy_enumerator.rb
@@ -19,7 +19,7 @@ class TestLazyEnumerator < Test::Unit::TestCase
def test_initialize
assert_equal([1, 2, 3], [1, 2, 3].lazy.to_a)
- assert_equal([1, 2, 3], Enumerable::Lazy.new([1, 2, 3]).to_a)
+ assert_equal([1, 2, 3], Enumerator::Lazy.new([1, 2, 3]).to_a)
end
def test_each_args