From 01c5eafc219b095c9017a4b648feb3397e449da0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edgar=20Ram=C3=ADrez-Mondrag=C3=B3n?= Date: Thu, 26 Dec 2024 15:09:23 -0600 Subject: [PATCH] test: Fix `completeCount` version check --- tests/integration/test_rpc_client.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/integration/test_rpc_client.py b/tests/integration/test_rpc_client.py index f9cf6a3d..59893493 100644 --- a/tests/integration/test_rpc_client.py +++ b/tests/integration/test_rpc_client.py @@ -426,8 +426,8 @@ def test_quota( assert props["quotals_urldescrip"] == "Learn more" with subtests.test(msg="completeCount"): - if server_version < (6, 8, 2): - pytest.xfail("completeCount is not supported in LimeSurvey < 6.8.2") + if server_version < (6, 8, 3): + pytest.xfail("completeCount is not supported in LimeSurvey < 6.8.3") props = client.get_quota_properties(quota_id) assert int(props["completeCount"]) == 0