Skip to content

Commit

Permalink
test: Update expectations for non-null columns
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed Sep 14, 2024
1 parent cd36646 commit bf28247
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@ def test_create_datasource_successful(self, client, download_datasource_task):
assert set(url["validation"].keys()) == {"id", "task_id", "is_valid", "errors"}
assert not url["deleted"]
assert url["status"] == "queued.download"
assert url["country"] is None
assert url["period"] is None
assert url["source"] is None
assert url["country"] == ""
assert url["period"] == ""
assert url["source"] == ""

url_obj = Url.objects.get(id=url["id"])

Expand Down

0 comments on commit bf28247

Please sign in to comment.