diff options
author | Fangyin Hu <fangyinx.hu@intel.com> | 2017-10-26 02:21:38 -0700 |
---|---|---|
committer | Fangyin Hu <fangyinx.hu@intel.com> | 2017-10-26 02:21:38 -0700 |
commit | 751a5aed2cac6bd7b87028eaf7eab1a8f87fface (patch) | |
tree | 8e9f43f31933aefca4c1834e5981c7348380631c | |
parent | b7b364ce32f88d983875b86fa9c886c7c5471c0c (diff) |
Fix the NSH SFC functional test failed issue.
Change-Id: If118254b6479f7ffb3e0b4f81d3585b4b90cc92c
Signed-off-by: Fangyin Hu <fangyinx.hu@intel.com>
-rw-r--r-- | resources/libraries/python/SFC/VerifyPacket.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/resources/libraries/python/SFC/VerifyPacket.py b/resources/libraries/python/SFC/VerifyPacket.py index 84eb6aa0a2..90dfd375ca 100644 --- a/resources/libraries/python/SFC/VerifyPacket.py +++ b/resources/libraries/python/SFC/VerifyPacket.py @@ -110,8 +110,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)) |