Skip to content

Commit

Permalink
Use zip(strict=True)
Browse files Browse the repository at this point in the history
  • Loading branch information
juntyr committed Nov 22, 2024
1 parent 7352b63 commit 4503b4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyodide_build/tests/test_buildpkg.py
Original file line number Diff line number Diff line change
Expand Up @@ -279,5 +279,5 @@ def test_extract_tarballname():
"ball 3.tar.gz",
]

for header, tarballname in zip(headers, tarballnames):
for header, tarballname in zip(headers, tarballnames, strict=True):
assert buildpkg._extract_tarballname(url, header) == tarballname

0 comments on commit 4503b4a

Please sign in to comment.