X-Git-Url: https://gerrit.fd.io/r/gitweb?p=csit.git;a=blobdiff_plain;f=resources%2Flibraries%2Fpython%2FSFC%2FVerifyPacket.py;h=a13c7601d5f1954bba03a5514d4b8aeba22584fb;hp=84eb6aa0a247cb3592dc60042245827e213742f4;hb=5e7be479eacd4d1085cab152c35dcb6433a146ed;hpb=eb9eec208b6e66bf585546ffe5a9554a48fe1208 diff --git a/resources/libraries/python/SFC/VerifyPacket.py b/resources/libraries/python/SFC/VerifyPacket.py index 84eb6aa0a2..a13c7601d5 100644 --- a/resources/libraries/python/SFC/VerifyPacket.py +++ b/resources/libraries/python/SFC/VerifyPacket.py @@ -66,7 +66,6 @@ class VerifyPacket(object): :param payload_data: the payload data in the packet. :type payload_data: str - :returns: none :raises RuntimeError: If the vxlan protocol field verify fails. """ # get the vxlan packet and check it @@ -87,7 +86,6 @@ class VerifyPacket(object): :param test_type: the functional test type. :type payload_data: str :type test_type: str - :returns: none :raises RuntimeError: If the vxlangpe and nsh protocol field verify fails. """ @@ -110,8 +108,7 @@ class VerifyPacket(object): raise RuntimeError("Unexpected NSH version: {0}". format(nsh_pkt.Version)) - print type(nsh_pkt.OAM) - if nsh_pkt.OAM != 0 or nsh_pkt.OAM != 1: + if nsh_pkt.OAM != 0 and nsh_pkt.OAM != 1: raise RuntimeError("Unexpected NSH OAM: {0}". format(nsh_pkt.OAM)) @@ -172,7 +169,6 @@ class VerifyPacket(object): :type ether: scapy.Ether :type frame_size: Integer :type test_type: str - :returns: none :raises RuntimeError: If the packet field verify fails. """