Skip to content

Commit 0935af8

Browse files
committed
fix assert for headers
1 parent 920d4db commit 0935af8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_recipe.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -332,4 +332,4 @@ def test_recipe_download_headers(self):
332332
recipe = DummyRecipe()
333333
with mock.patch.dict(os.environ, {f'DOWNLOAD_HEADERS_{recipe.name}': '[["header1","foo"],["header2", "bar"]]'}):
334334
download_headers = recipe.download_headers
335-
assert download_headers == [["header1", "foo"], ["header2", "bar"]]
335+
assert download_headers == [("header1", "foo"), ("header2", "bar")]

0 commit comments

Comments
 (0)