Skip to content

Commit

Permalink
Merge pull request #48 from JoinTheAlliance/0.0.28
Browse files Browse the repository at this point in the history
memory test
  • Loading branch information
lalalune authored Mar 5, 2024
2 parents 43ca730 + 6eca7d0 commit 7c7bb32
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/lib/__tests__/memory.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -256,10 +256,10 @@ describe("Memory - Basic tests", () => {
});

// Verify creation by counting memories
const initialCount = await memoryManager.countMemoriesByUserIds([
user?.id as UUID,
zeroUuid,
]);
const initialCount = await memoryManager.countMemoriesByUserIds(
[user?.id as UUID, zeroUuid],
false,
);
expect(initialCount).toBeGreaterThan(0);

// Search memories by embedding
Expand Down

0 comments on commit 7c7bb32

Please sign in to comment.