From: Luis Gomez Date: Fri, 20 Mar 2015 01:14:17 +0000 (+0000) Subject: Merge "action for updated flows changed" X-Git-Tag: release/lithium~179 X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=commitdiff_plain;h=27079ae516ecdc9155b0de64cfdb0d439f1c197c;hp=1ec11fa8083ed60afa3dc4ec9a735c7de1605283;p=integration%2Ftest.git Merge "action for updated flows changed" --- diff --git a/test/csit/libraries/XmlComparator.py b/test/csit/libraries/XmlComparator.py index 638e56d3a7..b5fd28e5de 100644 --- a/test/csit/libraries/XmlComparator.py +++ b/test/csit/libraries/XmlComparator.py @@ -310,6 +310,14 @@ class XmlComparator: if nodeKey != 'drop-action': new_act = child.ownerDocument.createElement('drop-action') else: - new_act = child.ownerDocument.createElement('dec-mpls-ttl') + new_act = child.ownerDocument.createElement('output-action') + onc = child.ownerDocument.createElement('output-node-connector') + onc_content = child.ownerDocument.createTextNode('TABLE') + onc.appendChild(onc_content) + new_act.appendChild(onc) + ml = child.ownerDocument.createElement('max-length') + ml_content = child.ownerDocument.createTextNode('60') + ml.appendChild(ml_content) + new_act.appendChild(ml) child.parentNode.replaceChild(new_act, child) return xml_dom_input.toxml(encoding='utf-8')