From 0df8fedb14dc909b7f26be6720868d51d752a007 Mon Sep 17 00:00:00 2001 From: tligui_y Date: Fri, 25 Jul 2025 17:36:35 +0200 Subject: [PATCH] Update tests/test_utils_lazypv.py --- tests/test_utils_lazypv.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_utils_lazypv.py b/tests/test_utils_lazypv.py index 0d00e1897..fb559a69c 100644 --- a/tests/test_utils_lazypv.py +++ b/tests/test_utils_lazypv.py @@ -51,7 +51,7 @@ def test_getattr(): get_method = pv.__getattr__('get') assert callable(get_method) # Check if it's really a function - result = get_method() + result = get_method(timeout=3.0) assert isinstance(result, dict), "Expected dict because form='time'" # Full check of expected fields