summaryrefslogtreecommitdiffhomepage
path: root/test/t/array.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/t/array.rb')
-rw-r--r--test/t/array.rb7
1 files changed, 0 insertions, 7 deletions
diff --git a/test/t/array.rb b/test/t/array.rb
index 38d5732ac..f9f4ce19a 100644
--- a/test/t/array.rb
+++ b/test/t/array.rb
@@ -392,10 +392,3 @@ assert('Array#freeze') do
a[0] = 1
end
end
-
-assert('shared array replace') do
- a = [0] * 40
- b = [0, 1, 2]
- b.replace a[1, 20].dup
- assert_equal 20, b.size
-end