Remove duplicate mobile_app client fixture (#100530)

This commit is contained in:
Marc Mueller 2023-09-18 10:52:43 +02:00 committed by GitHub
parent 276d245409
commit f41e3a2beb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 20 deletions

View file

@ -196,9 +196,9 @@ async def test_webhook_handle_fire_event(
assert events[0].data["hello"] == "yo world"
async def test_webhook_update_registration(webhook_client, authed_api_client) -> None:
async def test_webhook_update_registration(webhook_client) -> None:
"""Test that a we can update an existing registration via webhook."""
register_resp = await authed_api_client.post(
register_resp = await webhook_client.post(
"/api/mobile_app/registrations", json=REGISTER_CLEARTEXT
)