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 de6fc38
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/end_to_end/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,12 +123,12 @@ async def eth(deployer) -> Contract:
return await get_eth_contract(provider=deployer)


@pytest_asyncio.fixture(scope="session")
async def cairo_counter(deployer) -> Contract:
@pytest.fixture(scope="session")
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 de6fc38

Please sign in to comment.