Skip to content

Commit

Permalink
Remove unused tmp_dir fixture from test_unsupported_version (#16634)
Browse files Browse the repository at this point in the history
  • Loading branch information
AmineKhaldi authored Oct 16, 2023
1 parent f2586f6 commit 3707aa4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/core/full_node/stores/test_coin_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -494,7 +494,7 @@ async def test_get_coin_states(db_version: int) -> None:


@pytest.mark.asyncio
async def test_unsupported_version(tmp_dir: Path) -> None:
async def test_unsupported_version() -> None:
with pytest.raises(RuntimeError, match="CoinStore does not support database schema v1"):
async with DBConnection(1) as db_wrapper:
await CoinStore.create(db_wrapper)

0 comments on commit 3707aa4

Please sign in to comment.