MCPcopy
hub / github.com/SWE-agent/mini-swe-agent / test_simple_override

Function test_simple_override

tests/utils/test_serialize.py:14–16  ·  view source on GitHub ↗

Test that later dictionaries override earlier ones for simple values.

()

Source from the content-addressed store, hash-verified

12
13
14def test_simple_override():
15 """Test that later dictionaries override earlier ones for simple values."""
16 assert recursive_merge({"a": 1, "b": 2}, {"b": 3, "c": 4}) == {"a": 1, "b": 3, "c": 4}
17
18
19def test_nested_dict_merge():

Callers

nothing calls this directly

Calls 1

recursive_mergeFunction · 0.90

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…