Skip to content

Commit

Permalink
Fix bug in test_search_tokens.py
Browse files Browse the repository at this point in the history
  • Loading branch information
maxachis committed Jun 2, 2024
1 parent 1c0a8a0 commit 24a9a57
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/integration/test_search_tokens.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ def test_search_tokens_get(
assert response.status_code == 200
data = response.json.get("data")
assert (
data["count"] == 1
len(data) == 1
), "Quick Search endpoint response should return only one entry"
entry = data["data"][0]
entry = data[0]
assert entry["agency_name"] == "Agency A"
assert entry["airtable_uid"] == "SOURCE_UID_1"

0 comments on commit 24a9a57

Please sign in to comment.