From 0d548fafa5eff897c15ea9f96fc5dc6af1ee8948 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..5d6d6fc1 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, 9, 0): + pytest.xfail("completeCount is not supported in LimeSurvey < 6.9.0") props = client.get_quota_properties(quota_id) assert int(props["completeCount"]) == 0