Skip to content

Commit

Permalink
Remove unused tmp_dir fixture from HintStore DB schema version test (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
AmineKhaldi authored Oct 2, 2023
1 parent 7effa29 commit 5990f10
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/core/full_node/stores/test_hint_store.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
from __future__ import annotations

import logging
from pathlib import Path
from typing import Tuple

import pytest
Expand Down Expand Up @@ -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)

0 comments on commit 5990f10

Please sign in to comment.