pktgen: docstring fix 13/10313/2
authorChristian Trautman <ctrautma@redhat.com>
Fri, 19 Feb 2016 20:50:54 +0000 (15:50 -0500)
committerMaryam Tahhan <maryam.tahhan@intel.com>
Sun, 21 Feb 2016 15:28:31 +0000 (15:28 +0000)
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>
tools/pkt_gen/trafficgen/trafficgenhelper.py

index f5ac539..97cf637 100644 (file)
@@ -63,7 +63,7 @@ def merge_spec(orig, new):
         >>> 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.
     """