minor: remove extra decorators

These were duplicates and had no effect.
This commit is contained in:
Chris Milne 2026-06-03 14:28:40 +01:00
parent f44c5b6f36
commit 1b54918bb4

View file

@ -18,7 +18,6 @@ async def test_get_services_success(default_client: AsyncClient):
assert data["services"][0]["name"] == "Test Service"
@pytest.mark.anyio
@pytest.mark.parametrize(
"query, expected_status",
[
@ -46,7 +45,6 @@ async def test_post_service_success(default_client: AsyncClient):
assert type(data["service"]["api_key"]) == str
@pytest.mark.anyio
@pytest.mark.parametrize(
"body, expected_status",
[
@ -73,7 +71,6 @@ async def test_patch_service_success(default_client: AsyncClient):
assert type(data["service"]["api_key"]) == str
@pytest.mark.anyio
@pytest.mark.parametrize(
"body, expected_status",
[