Skip to content

Commit

Permalink
chore: lint files
Browse files Browse the repository at this point in the history
  • Loading branch information
bracesproul committed Apr 8, 2024
1 parent 9d040c8 commit 291d6b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libs/langchain-community/src/vectorstores/tests/zep.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ describe("ZepVectorStore", () => {
const originalFromDocuments = ZepVectorStore.fromDocuments;
ZepVectorStore.fromDocuments = jest.fn(
async (docs, embeddings, zepConfig) => {
const zepVectorStore = await originalFromDocuments.invoke(
const zepVectorStore = await originalFromDocuments.call(
ZepVectorStore,
docs as Document[],
embeddings as EmbeddingsInterface,
Expand All @@ -189,7 +189,7 @@ describe("ZepVectorStore", () => {
);

const zepVectorStore = await ZepVectorStore.fromTexts(
texts,.
texts,
metadatas,
embeddings,
zepConfig
Expand Down

0 comments on commit 291d6b7

Please sign in to comment.