Skip to content

Commit

Permalink
fix assert for headers
Browse files Browse the repository at this point in the history
  • Loading branch information
brentpicasso committed Oct 21, 2024
1 parent 920d4db commit 0935af8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_recipe.py
Original file line number Diff line number Diff line change
Expand Up @@ -332,4 +332,4 @@ def test_recipe_download_headers(self):
recipe = DummyRecipe()
with mock.patch.dict(os.environ, {f'DOWNLOAD_HEADERS_{recipe.name}': '[["header1","foo"],["header2", "bar"]]'}):
download_headers = recipe.download_headers
assert download_headers == [["header1", "foo"], ["header2", "bar"]]
assert download_headers == [("header1", "foo"), ("header2", "bar")]

0 comments on commit 0935af8

Please sign in to comment.