Skip to content

Commit

Permalink
Revert "Merge pull request #41931 from MarcelEeken/deep-merge-changin…
Browse files Browse the repository at this point in the history
…g-original-hash"

This reverts commit 9317395.
  • Loading branch information
byroot committed Apr 13, 2021
1 parent 9317395 commit edc7064
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 15 deletions.
4 changes: 0 additions & 4 deletions activesupport/CHANGELOG.md
@@ -1,7 +1,3 @@
* Fix issue in `Hash#deep_merge` where it did not properly duplicate a nested `Hash`

*Marcel Eeken*

* Fixed issue in `ActiveSupport::Cache::RedisCacheStore` not passing options
to `read_multi` causing `fetch_multi` to not work properly.

Expand Down
Expand Up @@ -16,7 +16,7 @@ class Hash
# h1.deep_merge(h2) { |key, this_val, other_val| this_val + other_val }
# # => { a: 100, b: 450, c: { c1: 300 } }
def deep_merge(other_hash, &block)
deep_dup.deep_merge!(other_hash, &block)
dup.deep_merge!(other_hash, &block)
end

# Same as +deep_merge+, but modifies +self+.
Expand Down
10 changes: 0 additions & 10 deletions activesupport/test/core_ext/hash_ext_test.rb
Expand Up @@ -299,16 +299,6 @@ def test_deep_merge_with_falsey_values
assert_equal expected, hash_1
end

def test_deep_merge_with_nested_hash_returning_full_new_hash
hash_1 = { a: { b: "foo" } }
hash_2 = { d: "bar" }

new_hash = hash_1.deep_merge(hash_2)
new_hash[:a][:b] = "baz"

assert_equal("foo", hash_1[:a][:b])
end

def test_reverse_merge
defaults = { d: 0, a: "x", b: "y", c: 10 }.freeze
options = { a: 1, b: 2 }
Expand Down

0 comments on commit edc7064

Please sign in to comment.