1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
Koichi Sasada 2020-03-02 11:43:17 +09:00
parent d25a4f413d
commit 0bfee2397b

View file

@ -3303,7 +3303,7 @@ __END__
assert_equal(0, STDIN.fileno)
assert_equal(1, STDOUT.fileno)
assert_equal(2, STDERR.fileno)
assert_equal(0, $stdin.fileno)
assert_equal(0, $stdin.fileno, "#fileno on #{$stdin.class}")
assert_equal(1, $stdout.fileno)
assert_equal(2, $stderr.fileno)
end