summaryrefslogtreecommitdiff
path: root/spec/ruby/core/env/shared/each.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/env/shared/each.rb')
-rw-r--r--spec/ruby/core/env/shared/each.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/ruby/core/env/shared/each.rb b/spec/ruby/core/env/shared/each.rb
index 8a262e4862..261ad3a2a6 100644
--- a/spec/ruby/core/env/shared/each.rb
+++ b/spec/ruby/core/env/shared/each.rb
@@ -8,7 +8,7 @@ describe :env_each, shared: true do
ENV.clear
ENV["foo"] = "bar"
ENV["baz"] = "boo"
- ENV.send(@method) { |k, v| e << [k, v] }
+ ENV.send(@method) { |k, v| e << [k, v] }.should equal(ENV)
e.should include(["foo", "bar"])
e.should include(["baz", "boo"])
ensure