From f2c7968a4295bdfd658501a2071bcc165eb3423d Mon Sep 17 00:00:00 2001 From: Sutou Kouhei Date: Tue, 12 Aug 2025 10:16:41 +0900 Subject: [PATCH] [ruby/stringio] Fix test name (https://github.com/ruby/stringio/pull/139) https://github.com/ruby/stringio/commit/0edc8e22da --- test/stringio/test_stringio.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/stringio/test_stringio.rb b/test/stringio/test_stringio.rb index 5215a6d312..70bab8afe2 100644 --- a/test/stringio/test_stringio.rb +++ b/test/stringio/test_stringio.rb @@ -70,7 +70,7 @@ class TestStringIO < Test::Unit::TestCase assert_nil io.getc end - def test_pread_eof + def test_eof_null io = StringIO.new(nil) assert_predicate io, :eof? end