diff options
author | Alan Wu <[email protected]> | 2022-06-16 16:34:14 -0400 |
---|---|---|
committer | Alan Wu <[email protected]> | 2022-06-16 16:34:14 -0400 |
commit | e46292197fd917d0a450c30e8341c1872e6aab19 (patch) | |
tree | 7d8484380939151cac15b97744a2937edd749e6d /spec/ruby/core | |
parent | ae163cae6b3f01e0fb827e0a18d5889f9703617f (diff) |
Fix spec version guard
Follow up for 278fefb96294adf9d27a78f919c714a31b65ef58
Diffstat (limited to 'spec/ruby/core')
-rw-r--r-- | spec/ruby/core/env/shared/update.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/ruby/core/env/shared/update.rb b/spec/ruby/core/env/shared/update.rb index 1142c503b8..3101f9c561 100644 --- a/spec/ruby/core/env/shared/update.rb +++ b/spec/ruby/core/env/shared/update.rb @@ -15,7 +15,7 @@ describe :env_update, shared: true do ENV["bar"].should == "1" end - ruby_version_is "3.1" do + ruby_version_is "3.2" do it "adds the multiple parameter hashes to ENV, returning ENV" do ENV.send(@method, {"foo" => "0", "bar" => "1"}, {"baz" => "2"}).should equal(ENV) ENV["foo"].should == "0" |