Tests: Refactor payload_to_info()
All callers of payload_to_info were required to wrap payload with str(). Refactor to call scapy's payload.load for raw payloads or specify the specific fieldname. Change-Id: I1c80599d4df8dc129dbb8274733afaad406d5bcf Signed-off-by: Paul Vinciguerra <pvinci@vinciconsulting.com>
This commit is contained in:

committed by
Ole Trøan

parent
ea2450fa2d
commit
eaea421e1f
@ -2080,7 +2080,7 @@ class TestSRv6(VppTestCase):
|
||||
# but packet[Raw] gives the complete payload
|
||||
# (incl L2 header) for the T.Encaps L2 case
|
||||
try:
|
||||
payload_info = self.payload_to_info(str(packet[Raw]))
|
||||
payload_info = self.payload_to_info(packet[Raw])
|
||||
|
||||
except:
|
||||
# remote L2 header from packet[Raw]:
|
||||
|
Reference in New Issue
Block a user