fix(assets): remove unused variable in test_lookup.py (ruff F841)

This commit is contained in:
Simon Pinfold
2026-08-26 04:47:04 -07:00
parent e7cd965656
commit 9b7b446d41

View File

@@ -113,7 +113,7 @@ def test_dedup_returns_matching_name_entity(session, tmp_path):
"""Upload dedup returns the entity with the matching name, not just any entity."""
f = _make_file(tmp_path, "match.png")
content = create_content(session, path=f, hash="dup")
record = create_record(session, content_id=content.id, name="match.png")
create_record(session, content_id=content.id, name="match.png")
session.commit()
result = lookup_for_upload_dedup(session, "dup", "match.png")