style: drop unused pathlib.Path imports in marker tests

This commit is contained in:
Igor Lins e Silva
2026-04-26 18:23:31 -03:00
parent 247744296d
commit 8a1fd95b1b
-3
View File
@@ -383,7 +383,6 @@ def test_fix_blob_seq_ids_noop_without_database(tmp_path):
def test_fix_blob_seq_ids_writes_marker_after_blob_path(tmp_path):
"""The .blob_seq_ids_migrated marker is written after a successful BLOB → INTEGER conversion."""
from pathlib import Path
from mempalace.backends.chroma import _BLOB_FIX_MARKER
db_path = tmp_path / "chroma.sqlite3"
@@ -409,7 +408,6 @@ def test_fix_blob_seq_ids_writes_marker_when_already_integer(tmp_path):
marker on first run too — next ``_fix_blob_seq_ids`` call short-circuits
before touching the sqlite3 file.
"""
from pathlib import Path
from mempalace.backends.chroma import _BLOB_FIX_MARKER
db_path = tmp_path / "chroma.sqlite3"
@@ -435,7 +433,6 @@ def test_fix_blob_seq_ids_skips_sqlite_when_marker_present(tmp_path):
PersistentClient call (#1090). Once a palace has been migrated, we
never want to open it again, even read-only.
"""
from pathlib import Path
from unittest.mock import patch
from mempalace.backends.chroma import _BLOB_FIX_MARKER