summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2024-03-06 17:28:12 +0900
committergit <svn-admin@ruby-lang.org>2024-03-06 08:28:16 +0000
commit0c2e97689495c545b81c142f30d5f7b81b78a184 (patch)
treeb3d9b4d8bed51c106c7c6f50713c6ed944891ab7
parent9ab1fa3bf570bf19b0d6808adf12e965aacc6d83 (diff)
[ruby/irb] Clear temporary directories
(https://github.com/ruby/irb/pull/894) https://github.com/ruby/irb/commit/dc0dd25a39
-rw-r--r--test/irb/test_history.rb1
1 files changed, 1 insertions, 0 deletions
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