From 506dad43c575a17bda43caf8777b3cb86f6225a5 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Wed, 6 Mar 2024 17:17:53 +0900 Subject: [PATCH] Clear temporary directories --- 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 b9f395524..ea220a2dd 100644 --- a/test/irb/test_history.rb +++ b/test/irb/test_history.rb @@ -27,6 +27,7 @@ def teardown ENV["IRBRC"] = @backup_irbrc Encoding.default_external = @backup_default_external $VERBOSE = @original_verbose + FileUtils.rm_rf(@tmpdir) end class TestInputMethodWithRelineHistory < TestInputMethod