summaryrefslogtreecommitdiff
path: root/spec/ruby/core
diff options
context:
space:
mode:
authorAlan Wu <[email protected]>2022-06-16 16:34:14 -0400
committerAlan Wu <[email protected]>2022-06-16 16:34:14 -0400
commite46292197fd917d0a450c30e8341c1872e6aab19 (patch)
tree7d8484380939151cac15b97744a2937edd749e6d /spec/ruby/core
parentae163cae6b3f01e0fb827e0a18d5889f9703617f (diff)
Fix spec version guard
Follow up for 278fefb96294adf9d27a78f919c714a31b65ef58
Diffstat (limited to 'spec/ruby/core')
-rw-r--r--spec/ruby/core/env/shared/update.rb2
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"