Skip to content

Commit ecc4e4e

Browse files
committedMar 4, 2025·
style: fix linter errors
Signed-off-by: Hiroshi Miura <[email protected]>
1 parent 122377c commit ecc4e4e

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed
 

‎MANIFEST.in

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ recursive-include tests *.json
1616
recursive-include tests *.py
1717
recursive-include tests *.xml
1818
recursive-include tools *.py
19+
prune ci
1920
prune .github
2021
exclude .gitignore
2122
exclude .readthedocs.yml

‎tests/test_helper.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,8 @@ def test_helper_downloadBinary_sha256(tmp_path, monkeypatch):
139139

140140
expected = binascii.unhexlify("07b3ef4606b712923a14816b1cfe9649687e617d030fc50f948920d784c0b1cd")
141141
out = tmp_path.joinpath("text.xml")
142-
helper.downloadBinaryFile("http://example.com/test.xml", out, "sha256", expected, 60)
142+
timeout = (Settings.connection_timeout, Settings.response_timeout)
143+
helper.downloadBinaryFile("http://example.com/test.xml", out, "sha256", expected, timeout)
143144

144145

145146
@pytest.mark.parametrize(

0 commit comments

Comments
 (0)
Please sign in to comment.