Skip to content

Commit

Permalink
fix: Fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
hh-space-invader committed Mar 11, 2025
1 parent 8970512 commit 30ae574
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_async_qdrant_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ async def test_async_qdrant_client(prefer_grpc):
] * 10

await client.delete(COLLECTION_NAME, points_selector=[0])
assert (await client.count(COLLECTION_NAME)).count == 99
assert (await client.count(COLLECTION_NAME)).count == k - 1

await client.batch_update_points(
COLLECTION_NAME,
Expand All @@ -237,7 +237,7 @@ async def test_async_qdrant_client(prefer_grpc):
)
],
)
assert (await client.count(COLLECTION_NAME)).count == 100
assert (await client.count(COLLECTION_NAME)).count == k

await client.set_payload(COLLECTION_NAME, payload={"added_payload": "zero"}, points=[0])
assert (await client.retrieve(COLLECTION_NAME, ids=[0], with_payload=["added_payload"]))[
Expand Down

0 comments on commit 30ae574

Please sign in to comment.