Skip to content

Commit

Permalink
update test downloader
Browse files Browse the repository at this point in the history
  • Loading branch information
aperrin66 committed Oct 6, 2021
1 parent fb3ca08 commit 70dc8a4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_downloaders.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 70dc8a4

Please sign in to comment.