From 70dc8a4f59dc5ca5e4bbdb6f146331d1cc498a0e Mon Sep 17 00:00:00 2001 From: Adrien Perrin Date: Mon, 9 Aug 2021 08:53:42 +0000 Subject: [PATCH] update test downloader --- tests/test_downloaders.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_downloaders.py b/tests/test_downloaders.py index 45fd19f9..cd613a5e 100644 --- a/tests/test_downloaders.py +++ b/tests/test_downloaders.py @@ -31,11 +31,11 @@ class TestDownloader(downloaders.Downloader): """ @classmethod - def connect(cls, url, auth=(None, None)): + def connect(cls, url, auth=(None, None), **kwargs): return mock.Mock() @classmethod - def get_file_name(cls, url, connection): + def get_file_name(cls, url, auth, **kwargs): return 'test_file.txt' @classmethod