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"))