diff --git a/Merlin/External.LCA_RESTRICTED/Languages/IronRuby/mspec/rubyspec/core/array/rindex_spec.rb b/Merlin/External.LCA_RESTRICTED/Languages/IronRuby/mspec/rubyspec/core/array/rindex_spec.rb index 4971cf33fe..6e43c2ba4d 100644 --- a/Merlin/External.LCA_RESTRICTED/Languages/IronRuby/mspec/rubyspec/core/array/rindex_spec.rb +++ b/Merlin/External.LCA_RESTRICTED/Languages/IronRuby/mspec/rubyspec/core/array/rindex_spec.rb @@ -29,7 +29,7 @@ it "does not fail when removing elements from block" do sentinel = mock('sentinel') - ary = [0, 0, 1, 1, 3, 2, 1, sentinel] + ary = [0, 0, 1, 1, 3, 2, 1, sentinel, 4] sentinel.instance_variable_set(:@ary, ary) def sentinel.==(o) @ary.slice!(1..-1); false; end