aboutsummaryrefslogtreecommitdiffstats
path: root/test/asf/test_api_trace.py
diff options
context:
space:
mode:
authorDave Wallace <dwallacelf@gmail.com>2024-08-19 18:47:55 -0400
committerAndrew Yourtchenko <ayourtch@gmail.com>2024-08-22 07:35:40 +0000
commit85ce93160fa71c5e6fb9140704c07e6d8989889d (patch)
treecff2524293777a140eece22ab5900d39ca797d9d /test/asf/test_api_trace.py
parent7301abe9ba2fa75661238b0afece55eeeebce863 (diff)
tests: fix make test python issues on ubuntu 24.04
- add patch to scapy to use latest six module instead of the old scapy specific six module which fails to import moves sub-module on python 3.12 - fix warning for deprecated legacy editable install of vpp_papi - skip failing testcases on ubuntu-24.04 Type: test Change-Id: Idc1a008c6e45ba69caa50c2e245012eb05effed7 Signed-off-by: Dave Wallace <dwallacelf@gmail.com>
Diffstat (limited to 'test/asf/test_api_trace.py')
-rw-r--r--test/asf/test_api_trace.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/asf/test_api_trace.py b/test/asf/test_api_trace.py
index 8776a79f0ac..04fcf63ca41 100644
--- a/test/asf/test_api_trace.py
+++ b/test/asf/test_api_trace.py
@@ -37,7 +37,7 @@ class TestJsonApiTrace(VppAsfTestCase):
found = True
break
self.assertTrue(found)
- self.assertEquals(o["_msgname"], "show_version")
+ self.assertEqual(o["_msgname"], "show_version")
def test_json_api_trace_replay(self):
fname = "/tmp/create_loop.json"