Remove meaningless IO.open(1<<32) test.

This commit is contained in:
Yukihiro "Matz" Matsumoto
2020-09-02 16:01:08 +09:00
parent 08f61db6ee
commit 86dee45f1d
-1
View File
@@ -27,7 +27,6 @@ def assert_io_open(meth)
assert_raise(RuntimeError) { IO.__send__(meth, 1023) } # For Windows
assert_raise(RuntimeError) { IO.__send__(meth, 1 << 26) }
assert_raise(RuntimeError) { IO.__send__(meth, 1 << 32) } if (1 << 32).kind_of?(Integer)
end
end