Skip to content

Commit

Permalink
test: Fix completeCount version check
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon committed Dec 27, 2024
1 parent e3b16fe commit 0d548fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/integration/test_rpc_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 0d548fa

Please sign in to comment.