From a2197466a273928f76e00e89b3a6f5fb23569fa6 Mon Sep 17 00:00:00 2001 From: tomoya ishida Date: Sun, 3 Dec 2023 23:05:13 +0900 Subject: [PATCH] [ruby/irb] Disable pager in eval_history test (https://github.com/ruby/irb/pull/799) https://github.com/ruby/irb/commit/ee85e84935 --- test/irb/test_eval_history.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/test/irb/test_eval_history.rb b/test/irb/test_eval_history.rb index e81e65f7f40479..0f9ec4811cf4d4 100644 --- a/test/irb/test_eval_history.rb +++ b/test/irb/test_eval_history.rb @@ -18,6 +18,7 @@ def execute_lines(*lines, conf: {}, main: self, irb_path: nil) IRB.init_config(nil) IRB.conf[:VERBOSE] = false IRB.conf[:PROMPT_MODE] = :SIMPLE + IRB.conf[:USE_PAGER] = false IRB.conf.merge!(conf) input = TestInputMethod.new(lines) irb = IRB::Irb.new(IRB::WorkSpace.new(main), input)