From 7ef90b3978dad057ad6360a94d2d64e8ca5e9c38 Mon Sep 17 00:00:00 2001 From: HParker Date: Tue, 19 Dec 2023 21:12:18 -0800 Subject: Correct free_on_exit env var to free_at_exit --- test/ruby/test_rubyoptions.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test/ruby') diff --git a/test/ruby/test_rubyoptions.rb b/test/ruby/test_rubyoptions.rb index 8118d59118..38ca119a8f 100644 --- a/test/ruby/test_rubyoptions.rb +++ b/test/ruby/test_rubyoptions.rb @@ -1241,9 +1241,9 @@ class TestRubyOptions < Test::Unit::TestCase assert_in_out_err([IO::NULL], success: true) end - def test_free_on_exit_env_var - env = {"RUBY_FREE_ON_EXIT"=>"1"} + def test_free_at_exit_env_var + env = {"RUBY_FREE_AT_EXIT"=>"1"} assert_ruby_status([env, "-e;"]) - assert_in_out_err([env, "-W"], "", [], /Free on exit is experimental and may be unstable/) + assert_in_out_err([env, "-W"], "", [], /Free at exit is experimental and may be unstable/) end end -- cgit v1.2.3