From 6d9875ccbf78ca354e63f05a4e37ab1e2c14a9ac Mon Sep 17 00:00:00 2001 From: tomoya ishida Date: Sat, 20 May 2023 10:08:54 +0900 Subject: [ruby/irb] Fix dynamic_prompt test not executed, remove unnecessary set_input (https://github.com/ruby/irb/pull/585) https://github.com/ruby/irb/commit/b5f3efdcf0 --- test/irb/test_ruby_lex.rb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'test') diff --git a/test/irb/test_ruby_lex.rb b/test/irb/test_ruby_lex.rb index 943cce33b5..6a9a5963ae 100644 --- a/test/irb/test_ruby_lex.rb +++ b/test/irb/test_ruby_lex.rb @@ -41,7 +41,6 @@ module TestIRB ruby_lex = RubyLex.new(context) mock_io = MockIO_AutoIndent.new(lines, last_line_index, byte_pointer, add_new_line) - ruby_lex.set_input { @io.gets } ruby_lex.configure_io(mock_io) mock_io.calculated_indent end @@ -653,7 +652,7 @@ module TestIRB ruby_lex.set_prompt do |ltype, indent, continue, line_no| '%03d:%01d:%1s:%s ' % [line_no, indent, ltype, continue ? '*' : '>'] end - ruby_lex.set_input { @io.gets } + ruby_lex.configure_io(io) end def test_dyanmic_prompt -- cgit v1.2.3