Skip to content

Commit 375af63

Browse files
committed
fix: fixed test_list_with_wrong_parameters test
1 parent f5e3d26 commit 375af63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

e2e_tests/authorization_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def test_list_with_parameters():
5151
def test_list_with_wrong_parameters():
5252
params = ListAuthorizationParams(10, 0, "", "-1", include_non_authorized=False)
5353
response = client.authorizations.list(params)
54-
assert response.data == []
54+
assert len(response.errors) > 0
5555

5656
def test_authorization_api_response():
5757
authorization_api_response = {

0 commit comments

Comments
 (0)