Skip to content

Commit

Permalink
fix: Update test_list to use flattened metadata notation
Browse files Browse the repository at this point in the history
  • Loading branch information
Your Name (aider) committed Nov 12, 2024
1 parent 9c70ec0 commit 3daaaf6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ async def test_list(mock_chromadb_store: ChromaVectorStore) -> None:
assert entries[0].metadata["document.title"] == "test title"
assert entries[0].vector == [0.12, 0.25, 0.29]
assert entries[1].metadata["content"] == "test content 2"
assert entries[1].metadata["document"]["title"] == "test title 2"
assert entries[1].metadata["document.title"] == "test title 2"
assert entries[1].vector == [0.13, 0.26, 0.30]


Expand Down

0 comments on commit 3daaaf6

Please sign in to comment.