From d3e0d104ad6ebc687609c10a6c936954d2a7abdd Mon Sep 17 00:00:00 2001 From: Klement Sekera Date: Thu, 26 Jan 2023 12:35:35 +0100 Subject: tests: refactor extra_vpp_punt_config Rename extra_vpp_punt_config to a more generic name extra_vpp_config to better fit its purpose. It's fit for general use and already used that way by quic and vcl tests anyway. Type: refactor Signed-off-by: Klement Sekera Change-Id: Ib0a5789b0dbb3a8c3cae654dea4e32ac5e56dd41 --- test/asf/test_quic.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/asf/test_quic.py') diff --git a/test/asf/test_quic.py b/test/asf/test_quic.py index 681385a0046..8179b2f2366 100644 --- a/test/asf/test_quic.py +++ b/test/asf/test_quic.py @@ -133,7 +133,7 @@ class QUICEchoIntTestCase(QUICTestCase): """QUIC Echo Internal Test Case""" test_bytes = " test-bytes" - extra_vpp_punt_config = ["session", "{", "enable", "poll-main", "}"] + extra_vpp_config = ["session", "{", "enable", "poll-main", "}"] def setUp(self): super(QUICEchoIntTestCase, self).setUp() @@ -204,7 +204,7 @@ class QUICEchoExtTestCase(QUICTestCase): vpp_worker_count = 1 server_fifo_size = "1M" client_fifo_size = "4M" - extra_vpp_punt_config = [ + extra_vpp_config = [ "session", "{", "enable", -- cgit 1.2.3-korg