From 1eda59c55007839f58103a0d04ab454ab3d93e25 Mon Sep 17 00:00:00 2001 From: Dylan Bodington Date: Mon, 13 May 2024 15:23:07 +0100 Subject: [PATCH] Update test_download_utils.py --- basta/test_download_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/basta/test_download_utils.py b/basta/test_download_utils.py index 9678d38..12bdcfe 100644 --- a/basta/test_download_utils.py +++ b/basta/test_download_utils.py @@ -12,7 +12,7 @@ def setUp(self): def test_wget(self): - du.wget_file("www.google.com","index.html",self.pwd) + du.wget_file("http://www.google.com","index.html",self.pwd) self.assertTrue(os.path.isfile(os.path.join(self.pwd,"index.html"))) os.remove(os.path.join(self.pwd,"index.html"))