summaryrefslogtreecommitdiff
path: root/test/io/console/test_io_console.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/io/console/test_io_console.rb')
-rw-r--r--test/io/console/test_io_console.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/io/console/test_io_console.rb b/test/io/console/test_io_console.rb
index 75d8415fce..030dcd38ed 100644
--- a/test/io/console/test_io_console.rb
+++ b/test/io/console/test_io_console.rb
@@ -117,7 +117,7 @@ class TestIO_Console < Test::Unit::TestCase
s.print "a"
s.oflush # oflush may be issued after "a" is already sent.
s.print "b"
- assert_includes(["b", "ab"], m.readpartial(10))
+ assert_include(["b", "ab"], m.readpartial(10))
}
end
@@ -135,7 +135,7 @@ class TestIO_Console < Test::Unit::TestCase
s.print "a"
s.ioflush # ioflush may be issued after "a" is already sent.
s.print "b"
- assert_includes(["b", "ab"], m.readpartial(10))
+ assert_include(["b", "ab"], m.readpartial(10))
}
end