From eaea421e1fefedc47325f970475c5d48c899433c Mon Sep 17 00:00:00 2001 From: Paul Vinciguerra Date: Wed, 6 Mar 2019 11:58:06 -0800 Subject: 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 --- test/test_srv6.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/test_srv6.py') diff --git a/test/test_srv6.py b/test/test_srv6.py index 890e7ffbf3b..2ea9da76088 100644 --- a/test/test_srv6.py +++ b/test/test_srv6.py @@ -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]: -- cgit 1.2.3-korg