mirror of
https://github.com/ruby/ruby.git
synced 2025-09-16 09:04:05 +02:00
* array.c (ary_reject_bang): should not remove elements which are
not yielded. [Bug #2545] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32373 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
b582f2a123
commit
6343e30c14
3 changed files with 20 additions and 23 deletions
|
@ -611,7 +611,7 @@ class TestArray < Test::Unit::TestCase
|
|||
bug2545 = '[ruby-core:27366]'
|
||||
a = @cls[ 5, 6, 7, 8, 9, 10 ]
|
||||
assert_equal(9, a.delete_if {|i| break i if i > 8; i < 7})
|
||||
assert_equal(@cls[7, 8], a, bug2545)
|
||||
assert_equal(@cls[7, 8, 9, 10], a, bug2545)
|
||||
end
|
||||
|
||||
def test_dup
|
||||
|
@ -1096,7 +1096,7 @@ class TestArray < Test::Unit::TestCase
|
|||
bug2545 = '[ruby-core:27366]'
|
||||
a = @cls[ 5, 6, 7, 8, 9, 10 ]
|
||||
assert_equal(9, a.reject! {|i| break i if i > 8; i < 7})
|
||||
assert_equal(@cls[7, 8], a, bug2545)
|
||||
assert_equal(@cls[7, 8, 9, 10], a, bug2545)
|
||||
end
|
||||
|
||||
def test_replace
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue