aboutsummaryrefslogtreecommitdiffstats
path: root/test/ruby/test_io.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/ruby/test_io.rb')
-rw-r--r--test/ruby/test_io.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_io.rb b/test/ruby/test_io.rb
index 35b29068b9..7623053c79 100644
--- a/test/ruby/test_io.rb
+++ b/test/ruby/test_io.rb
@@ -1922,7 +1922,7 @@ End
Tempfile.open(self.class.name) do |f|
fd = f.fcntl(Fcntl::F_DUPFD, 63)
begin
- assert_equal(fd, 63)
+ assert_operator(fd, :>=, 63)
ensure
IO.for_fd(fd).close
end