Skip to content

Commit

Permalink
revert conftest
Browse files Browse the repository at this point in the history
  • Loading branch information
katiestahl committed Oct 2, 2024
1 parent e0785dc commit 7682da0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from httpx import ASGITransport, AsyncClient


@pytest_asyncio.fixture
@pytest_asyncio.fixture(scope="session")
def event_loop():
"""Create an instance of the event loop with session scope."""
loop = asyncio.get_event_loop_policy().new_event_loop()
Expand All @@ -31,7 +31,7 @@ async def async_client():
response_callback_type = Callable[[dict, dict], None]


@pytest_asyncio.fixture
@pytest_asyncio.fixture(scope="session")
async def check_response(async_client):
"""Provide base response check function. Use in individual tests."""

Expand Down

0 comments on commit 7682da0

Please sign in to comment.