Skip to content

Commit

Permalink
split lines more (pep8)
Browse files Browse the repository at this point in the history
  • Loading branch information
BWMac committed Sep 27, 2024
1 parent 63aeded commit 79908ce
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tests/unit/synapseclient/core/unit_test_download.py
Original file line number Diff line number Diff line change
Expand Up @@ -835,11 +835,13 @@ async def test_download_md5_mismatch_local_file(self) -> None:

async def test_download_expired_url(self, syn: Synapse) -> None:
url = (
"http://www.ayy.lmao/filerino.txt?Expires=0&X-Amz-Date=20240509T180000Z"
"http://www.ayy.lmao/filerino.txt?Expires=0"
"X-Amz-Date=20240509T180000Z"
"&X-Amz-Expires=1000"
)
new_url = (
"http://www.ayy.lmao/new_url.txt?Expires=1715000000&X-Amz-Date=20240509T180000Z"
"http://www.ayy.lmao/new_url.txt?Expires=1715000000"
"X-Amz-Date=20240509T180000Z"
"&X-Amz-Expires=1000"
)
contents = "\n".join(str(i) for i in range(1000))
Expand Down

0 comments on commit 79908ce

Please sign in to comment.