style: ruff format

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
MSL
2026-04-10 08:49:35 -07:00
parent 15c5a528ed
commit e30c283fd8
3 changed files with 14 additions and 13 deletions
+8 -2
View File
@@ -128,7 +128,10 @@ def test_dedup_source_group_with_duplicate():
col = MagicMock()
col.get.return_value = {
"ids": ["d1", "d2"],
"documents": ["long document content that is fairly long", "long document content that is fairly long"],
"documents": [
"long document content that is fairly long",
"long document content that is fairly long",
],
"metadatas": [{"wing": "a"}, {"wing": "a"}],
}
col.query.return_value = {
@@ -181,7 +184,10 @@ def test_dedup_source_group_query_failure_keeps():
col = MagicMock()
col.get.return_value = {
"ids": ["d1", "d2"],
"documents": ["long document one content here enough", "long document two content here enough"],
"documents": [
"long document one content here enough",
"long document two content here enough",
],
"metadatas": [{"wing": "a"}, {"wing": "a"}],
}
col.query.side_effect = Exception("query failed")