Fixed docstring to correctly reflect python output from using
merge_spec function.
JIRA: VSPERF-210
Change-Id: Ie3bf2a3d148aa9823bafafe8c61c4c94f00ccc87
Signed-off-by: Christian Trautman <ctrautma@redhat.com>
Reviewed-by: Maryam Tahhan <maryam.tahhan@intel.com>
>>> old = {'foo': 1, 'bar': {'foo': 2, 'bar': 3}}
>>> new = {'foo': 6, 'bar': {'foo': 7}}
>>> merge_spec(old, new)
- {'foo': 3, 'bar': {'foo': 7, 'bar': 3}}
+ {'foo': 6, 'bar': {'foo': 7, 'bar': 3}}
You'll notice that ``bar.bar`` is not removed. This is the desired result.
"""