Skip to content

Commit

Permalink
Cleanup irbrc generator cache always at teardown (#968)
Browse files Browse the repository at this point in the history
  • Loading branch information
tompng authored Jun 12, 2024
1 parent 3512020 commit 905184f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/irb/test_init.rb
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,6 @@ def setup
@original_irbrc = ENV["IRBRC"]
# To prevent the test from using the user's .irbrc file
ENV["HOME"] = @home = Dir.mktmpdir
IRB.instance_variable_set(:@existing_rc_name_generators, nil)
super
end

Expand All @@ -284,6 +283,7 @@ def teardown
ENV["HOME"] = @original_home
File.unlink(@irbrc)
Dir.rmdir(@home)
IRB.instance_variable_set(:@existing_rc_name_generators, nil)
end

def test_irb_name_converts_non_string_values_to_string
Expand Down

0 comments on commit 905184f

Please sign in to comment.