summaryrefslogtreecommitdiffhomepage
path: root/mrbgems/mruby-io
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2020-09-02 16:01:08 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2020-10-12 18:20:15 +0900
commit86dee45f1dc23047f441de2cbbcbf17468e14542 (patch)
tree0e405dcd9dc21813b9c7f6692d02662a79a92758 /mrbgems/mruby-io
parent08f61db6eeccf6a35435777c6deb55578f8817d8 (diff)
downloadmruby-86dee45f1dc23047f441de2cbbcbf17468e14542.tar.gz
mruby-86dee45f1dc23047f441de2cbbcbf17468e14542.zip
Remove meaningless `IO.open(1<<32)` test.
Diffstat (limited to 'mrbgems/mruby-io')
-rw-r--r--mrbgems/mruby-io/test/io.rb1
1 files changed, 0 insertions, 1 deletions
diff --git a/mrbgems/mruby-io/test/io.rb b/mrbgems/mruby-io/test/io.rb
index 47c70cc60..76ae13a58 100644
--- a/mrbgems/mruby-io/test/io.rb
+++ b/mrbgems/mruby-io/test/io.rb
@@ -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