We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 920d4db commit 0935af8Copy full SHA for 0935af8
tests/test_recipe.py
@@ -332,4 +332,4 @@ def test_recipe_download_headers(self):
332
recipe = DummyRecipe()
333
with mock.patch.dict(os.environ, {f'DOWNLOAD_HEADERS_{recipe.name}': '[["header1","foo"],["header2", "bar"]]'}):
334
download_headers = recipe.download_headers
335
- assert download_headers == [["header1", "foo"], ["header2", "bar"]]
+ assert download_headers == [("header1", "foo"), ("header2", "bar")]
0 commit comments