aboutsummaryrefslogtreecommitdiff
path: root/test/test_download.py
diff options
context:
space:
mode:
authorpukkandan <pukkandan.ytdlp@gmail.com>2022-06-21 12:51:46 +0530
committerpukkandan <pukkandan.ytdlp@gmail.com>2022-06-21 13:03:29 +0530
commitf0500bd1e4e3910abd58a1be812ba35fc20049e7 (patch)
treeef6f8d0ef9c0659d2b504f206506ff1fffa91c63 /test/test_download.py
parent95032f302ccaf294e2b16814f3b838c050182475 (diff)
[test] Fix `FakeYDL` signatures
Authored by: coletdjnz
Diffstat (limited to 'test/test_download.py')
-rwxr-xr-xtest/test_download.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_download.py b/test/test_download.py
index f38f5544e..c9825c074 100755
--- a/test/test_download.py
+++ b/test/test_download.py
@@ -43,7 +43,7 @@ class YoutubeDL(yt_dlp.YoutubeDL):
self.processed_info_dicts = []
super().__init__(*args, **kwargs)
- def report_warning(self, message):
+ def report_warning(self, message, *args, **kwargs):
# Don't accept warnings during tests
raise ExtractorError(message)