Skip to content

Commit

Permalink
fix list_id
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathangreen committed Feb 14, 2024
1 parent 1695ffb commit a82c757
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/core/test_external_search.py
Original file line number Diff line number Diff line change
Expand Up @@ -4802,7 +4802,7 @@ def compare(doc: dict[str, Any], work: Work) -> None:
assert len(doc["customlists"]) == len(work.custom_list_entries)
for idx, custom_list in enumerate(work.custom_list_entries):
actual = doc["customlists"][idx]
assert actual["list_id"] == custom_list.id
assert actual["list_id"] == custom_list.list_id
assert actual["featured"] == custom_list.featured
else:
assert doc["customlists"] is None
Expand Down

0 comments on commit a82c757

Please sign in to comment.