Skip to content
This repository has been archived by the owner on Jun 1, 2022. It is now read-only.

Commit

Permalink
Fixed search test failure, refs #367
Browse files Browse the repository at this point in the history
  • Loading branch information
simonw committed Apr 22, 2021
1 parent d29c265 commit f4582bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vaccinate/api/test_search.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def test_search_locations_ignores_soft_deleted(client, ten_locations):

def test_search_locations_format_json(client, ten_locations):
result = search_get_json(client, "q=Location+1")
assert set(result.keys()) == {"results", "keys"}
assert set(result.keys()) == {"results", "total"}
record = result["results"][0]
assert set(record.keys()) == {
"id",
Expand Down

0 comments on commit f4582bf

Please sign in to comment.