diff --git a/ChangeLog b/ChangeLog index 9ae8bad21f..794c3afeb2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Fri Feb 29 20:58:09 2008 Yukihiro Matsumoto + + * test/ruby/test_iterator.rb (TestIterator::test_enumerator): + adjust test for zip behavior reversion. + Fri Feb 29 20:25:07 2008 Yukihiro Matsumoto * string.c (rb_str_chomp_bang): now works on UTF-16. diff --git a/test/ruby/test_iterator.rb b/test/ruby/test_iterator.rb index 4b38ac806a..f6ac645321 100644 --- a/test/ruby/test_iterator.rb +++ b/test/ruby/test_iterator.rb @@ -491,7 +491,7 @@ class TestIterator < Test::Unit::TestCase loop{a.push e.next} assert_equal([1,2,3], a) - assert_equal([[1, 8, 10], [2, 6, 11], [3, 4, 12]], - (1..10).zip([8,6,4],(10..100)).to_a) + assert_equal([[8, 1, 10], [6, 2, 11], [4, 3, 12]], + [8,6,4].zip((1..10),(10..100)).to_a) end end