fix: Update parameter names in examples and tests for consistency with API specification

This commit is contained in:
claudi 2026-02-20 10:38:06 +01:00
parent 8d4fcc7d11
commit 9dce7787b1
2 changed files with 4 additions and 4 deletions

View file

@ -48,7 +48,7 @@ class TestRestApiAuth:
def test_api_token_auth_without_domain(self):
"""Test that API token auth requires a domain"""
with pytest.raises(ValueError, match="Domain is required"):
RestApiAuth.from_api_token("admin", "token123", None)
RestApiAuth.from_api_token("admin", "token123", None) # type: ignore
def test_json_body_params(self):
"""Test JSON body parameters"""