Skip to content

Commit

Permalink
fix unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanPleshkov committed Dec 6, 2023
1 parent 4857875 commit b6b40fc
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@ describe('QdrantClient', () => {
})
).result!;
expect(updateResult).toMatchObject<PlainMessage<typeof updateResult>>({
operationId: expect.any(BigInt) as bigint,
status: UpdateStatus.Acknowledged,
});

Expand All @@ -89,7 +88,6 @@ describe('QdrantClient', () => {
})
).result!;
expect(updateResult).toMatchObject<PlainMessage<typeof updateResult>>({
operationId: expect.any(BigInt) as bigint,
status: UpdateStatus.Acknowledged,
});

Expand All @@ -102,7 +100,6 @@ describe('QdrantClient', () => {
})
).result!;
expect(updateResult).toMatchObject<PlainMessage<typeof updateResult>>({
operationId: expect.any(BigInt) as bigint,
status: UpdateStatus.Completed,
});
});
Expand Down Expand Up @@ -275,7 +272,6 @@ describe('QdrantClient', () => {
})
).result!;
expect(updateResult).toMatchObject<PlainMessage<typeof updateResult>>({
operationId: expect.any(BigInt) as bigint,
status: UpdateStatus.Completed,
});
});
Expand Down

0 comments on commit b6b40fc

Please sign in to comment.