Skip to content

Commit

Permalink
fix: Indentation problem
Browse files Browse the repository at this point in the history
  • Loading branch information
tazarov committed Feb 9, 2024
1 parent 6f41c7a commit 3900bfc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions chromadb/test/segment/test_metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -677,7 +677,7 @@ def test_delete_segment(
# assert that all FTS rows are gone
assert len(res.fetchall()) == 0


def test_delete_single_fts_record(
system: System,
sample_embeddings: Iterator[SubmitEmbeddingRecord],
Expand Down Expand Up @@ -730,8 +730,8 @@ def test_delete_single_fts_record(
)
)
)
sql, params = get_sql(q_fts)
with _db.tx() as cur:
sql, params = get_sql(q_fts)
with _db.tx() as cur:
res = cur.execute(sql, params)
# assert that the ids that are deleted from the segment are also gone from the fts table
assert len(res.fetchall()) == 0
assert len(res.fetchall()) == 0

0 comments on commit 3900bfc

Please sign in to comment.