From 751ce4bdf82b2ddca78cd09c801d9f802c796c9c Mon Sep 17 00:00:00 2001 From: tligui_y Date: Tue, 5 Aug 2025 16:56:21 +0200 Subject: [PATCH] Update tests/test_utils_pv.py --- tests/test_utils_pv.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tests/test_utils_pv.py b/tests/test_utils_pv.py index 5c83ad12e..20cc8f5e0 100644 --- a/tests/test_utils_pv.py +++ b/tests/test_utils_pv.py @@ -7,6 +7,8 @@ from io import StringIO import colorama from slic.utils.pv import PV +print("PV backend:", type(PV)) + # Caproto is used to simulate a real EPICS IOC for testing from caproto.server import pvproperty, PVGroup, ioc_arg_parser, run @@ -56,9 +58,6 @@ def test_put_with_progress_and_repr(capture_stdout, value, expected_bar, expecte # Use the custom PV class pv = PV("TEST:VAL") - print("PV backend:", type(PV)) - - pv.wait_for_connection(timeout=2.0) assert pv.connected