Skip to content

Commit d5197b5

Browse files
authored
fix: Status message qdrant-container.test.ts
1 parent 5822912 commit d5197b5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/modules/qdrant/src/qdrant-container.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ describe("QdrantContainer", () => {
4242
apiKey: "INVALID_KEY_" + crypto.randomUUID(),
4343
});
4444

45-
expect(client.getCollections()).rejects.toThrow("Forbidden");
45+
expect(client.getCollections()).rejects.toThrow("Unauthorized");
4646

4747
await container.stop();
4848
});
@@ -71,7 +71,7 @@ describe("QdrantContainer", () => {
7171
apiKey: "INVALID_KEY_" + crypto.randomUUID(),
7272
});
7373

74-
expect(client.getCollections()).rejects.toThrow("Forbidden");
74+
expect(client.getCollections()).rejects.toThrow("Unauthorized");
7575

7676
await container.stop();
7777
});

0 commit comments

Comments
 (0)