From 0c2e97689495c545b81c142f30d5f7b81b78a184 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Wed, 6 Mar 2024 17:28:12 +0900 Subject: [PATCH] [ruby/irb] Clear temporary directories (https://github.com/ruby/irb/pull/894) https://github.com/ruby/irb/commit/dc0dd25a39 --- test/irb/test_history.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/test/irb/test_history.rb b/test/irb/test_history.rb index b9f3955249..ea220a2dd3 100644 --- a/test/irb/test_history.rb +++ b/test/irb/test_history.rb @@ -27,6 +27,7 @@ module TestIRB ENV["IRBRC"] = @backup_irbrc Encoding.default_external = @backup_default_external $VERBOSE = @original_verbose + FileUtils.rm_rf(@tmpdir) end class TestInputMethodWithRelineHistory < TestInputMethod