diff options
author | 2016-02-02 23:19:27 +0200 | |
---|---|---|
committer | 2016-02-02 23:19:27 +0200 | |
commit | 48889fac2a576b748537a11cc63bdf277156c780 (patch) | |
tree | ddff5f24fbffaaaa6e6196a9927cdb855f160880 /scripts | |
parent | cf7dc73b0418374e6b73cb1b2fafe05450cacbf3 (diff) |
scapy builder typo
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/automation/trex_control_plane/client_utils/scapy_packet_builder.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/automation/trex_control_plane/client_utils/scapy_packet_builder.py b/scripts/automation/trex_control_plane/client_utils/scapy_packet_builder.py index 7c398e9d..d8817de9 100644 --- a/scripts/automation/trex_control_plane/client_utils/scapy_packet_builder.py +++ b/scripts/automation/trex_control_plane/client_utils/scapy_packet_builder.py @@ -560,7 +560,7 @@ class CScapyTRexPktBuilder(object): + :exc:`AssertionError`, in case VM is not compiled (is None). """ - assert self.vm_low_level is None, 'vm_low_level is None, please use compile()' + assert self.vm_low_level is not None, 'vm_low_level is None, please use compile()' return self.vm_low_level.get_json() |