Skip to content

Commit 07ecf28

Browse files
committed
Typo fixes.
1 parent ecc1886 commit 07ecf28

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/test_download.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,15 @@ def test_download_once(self) -> None:
3232
ri = RemoteFileInfo()
3333
code = download_file(self.url, self.downloaded_file, ri, max_retry=5)
3434
if code != 200:
35-
self.skipTest(f"Could not dowload from {self.url}, cannot test")
35+
self.skipTest(f"Could not download from {self.url}, cannot test")
3636

3737
self.assertTrue(self.downloaded_file.exists())
3838
mtime = self.downloaded_file.stat().st_mtime
3939

4040
sleep(1)
4141
code = download_file(self.url, self.downloaded_file, ri, max_retry=5)
4242

43-
# Either the server tols us the file had not been modified, or
43+
# Either the server told us the file had not been modified, or
4444
# the download function checked the newly downloaded file is the
4545
# same as the one downloaded just before. Either way, we should
4646
# get a 304, and the file should not have been touched.

0 commit comments

Comments
 (0)