Skip to content

Commit 8871d98

Browse files
committed
feat: support for authenticated extended card method
1 parent 156f519 commit 8871d98

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tests/server/test_integration.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -779,7 +779,10 @@ def test_invalid_request_structure(client: TestClient):
779779
"""Test handling an invalid request structure."""
780780
response = client.post(
781781
'/',
782-
json={'id': '123'},
782+
json={
783+
# Missing required fields
784+
'id': '123'
785+
},
783786
)
784787
assert response.status_code == 200
785788
data = response.json()

0 commit comments

Comments
 (0)