diff --git a/tests/core/full_node/stores/test_hint_store.py b/tests/core/full_node/stores/test_hint_store.py index 5ab82243eae0..1da5951f8af9 100644 --- a/tests/core/full_node/stores/test_hint_store.py +++ b/tests/core/full_node/stores/test_hint_store.py @@ -1,7 +1,6 @@ from __future__ import annotations import logging -from pathlib import Path from typing import Tuple import pytest @@ -194,7 +193,7 @@ async def test_limits(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="HintStore does not support database schema v1"): async with DBConnection(1) as db_wrapper: await HintStore.create(db_wrapper)