diff options
author | Peter Zhu <[email protected]> | 2023-08-26 19:31:46 -0400 |
---|---|---|
committer | Peter Zhu <[email protected]> | 2023-08-28 15:05:19 -0400 |
commit | 91de37c23ec6b048e45df79cef1cb93a86316929 (patch) | |
tree | 7dd3aaccecdb848d152dc01dfc9f362c78394d30 /test/ruby/test_thread.rb | |
parent | caf48487cafb8414c60f32b902decf0689ae2093 (diff) |
Remove --disable-gems in assert_in_out_err
assert_in_out_err adds --disable=gems so we don't need to add
--disable-gems in the args list.
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/8303
Diffstat (limited to 'test/ruby/test_thread.rb')
-rw-r--r-- | test/ruby/test_thread.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_thread.rb b/test/ruby/test_thread.rb index e6f347c486..703373b11e 100644 --- a/test/ruby/test_thread.rb +++ b/test/ruby/test_thread.rb @@ -395,7 +395,7 @@ class TestThread < Test::Unit::TestCase end INPUT - assert_in_out_err(%w(--disable-gems -d), <<-INPUT, %w(false 2), %r".+") + assert_in_out_err(%w(-d), <<-INPUT, %w(false 2), %r".+") p Thread.abort_on_exception begin t = Thread.new { raise } |