From 01a8fff104f414af0c271448bb04ef0d886e2fed Mon Sep 17 00:00:00 2001 From: George Joseph Date: Fri, 19 Jun 2026 18:54:20 -0600 Subject: [PATCH] test_case: Add missing import for PcapListener For some reason the import for PcapListener went missing making the `runtests.py --pcap` inoperative. --- lib/python/asterisk/test_case.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/python/asterisk/test_case.py b/lib/python/asterisk/test_case.py index 5dd5a7860..11c8c9f83 100644 --- a/lib/python/asterisk/test_case.py +++ b/lib/python/asterisk/test_case.py @@ -23,6 +23,9 @@ from .test_config import TestConfig from .test_config import PCAP_AVAILABLE from .test_conditions import TestConditionController +# This needs to be the PcapListener from the pcap_listener module +# not the one from the .pcap module. +from pcap_listener import PcapListener LOGGER = None