From c26baa7e2c08b3396e8d1a386e4ff0729ebb1546 Mon Sep 17 00:00:00 2001 From: tligui_y Date: Tue, 5 Aug 2025 17:02:15 +0200 Subject: [PATCH] Update tests/test_utils_pv.py --- tests/test_utils_pv.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_utils_pv.py b/tests/test_utils_pv.py index 20cc8f5e..bcf37c36 100644 --- a/tests/test_utils_pv.py +++ b/tests/test_utils_pv.py @@ -28,7 +28,7 @@ def run_test_ioc(): prefix = "TEST:" ioc = TestIOC(prefix=prefix) - def start_ioc(): + def start_ioc(): asyncio.run(run(ioc.pvdb, startup_hook=None, interfaces=["127.0.0.1"])) thread = threading.Thread(target=start_ioc, daemon=True)