From 4b926330430738a61c4f4307b1ead2232c2e22c1 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Mon, 5 Apr 2021 12:17:44 +0900 Subject: [PATCH] [ruby/irb] Suppress verbose messages in the parallel test `:VERBOSE` flag needs to be set prior to `IRB::Irb.new`. https://github.com/ruby/irb/commit/0dbe292979 --- test/irb/test_cmd.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/irb/test_cmd.rb b/test/irb/test_cmd.rb index 044d852a32..5b63e56800 100644 --- a/test/irb/test_cmd.rb +++ b/test/irb/test_cmd.rb @@ -398,8 +398,8 @@ module TestIRB ]) IRB.init_config(nil) workspace = IRB::WorkSpace.new(self) - irb = IRB::Irb.new(workspace, input) IRB.conf[:VERBOSE] = false + irb = IRB::Irb.new(workspace, input) IRB.conf[:MAIN_CONTEXT] = irb.context irb.context.return_format = "=> %s\n" out, err = capture_output do