Skip to content

Commit

Permalink
test: remove unecessary async
Browse files Browse the repository at this point in the history
  • Loading branch information
obatirou committed Sep 3, 2024
1 parent aac64f9 commit 61b4ff3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/end_to_end/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,11 +124,11 @@ async def eth(deployer) -> Contract:


@pytest_asyncio.fixture(scope="session")
async def cairo_counter(deployer) -> Contract:
def cairo_counter(deployer) -> Contract:
"""
Return a cached version of the cairo_counter contract.
"""
return await get_contract("Counter", provider=deployer)
return get_contract("Counter", provider=deployer)


@pytest.fixture(scope="session")
Expand Down

0 comments on commit 61b4ff3

Please sign in to comment.