fix(backups): shorten snapshot query signature

pull/35/head
Houkime 2023-06-14 11:52:57 +00:00 committed by Inex Code
parent 09c79b3477
commit cfda6b0810
1 changed files with 2 additions and 2 deletions

View File

@ -47,7 +47,7 @@ def get_data(response):
return data
def api_snapshots(authorized_client, service):
def api_snapshots(authorized_client):
response = authorized_client.post(
"/graphql",
json={"query": generate_backup_query([API_SNAPSHOTS_QUERY])},
@ -59,7 +59,7 @@ def api_snapshots(authorized_client, service):
def test_snapshots_empty(authorized_client, dummy_service):
snaps = api_snapshots(authorized_client, dummy_service)
snaps = api_snapshots(authorized_client)
assert snaps == []