aboutsummaryrefslogtreecommitdiff
path: root/test/test_YoutubeDL.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_YoutubeDL.py
parent95032f302ccaf294e2b16814f3b838c050182475 (diff)
[test] Fix `FakeYDL` signatures
Authored by: coletdjnz
Diffstat (limited to 'test/test_YoutubeDL.py')
-rw-r--r--test/test_YoutubeDL.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_YoutubeDL.py b/test/test_YoutubeDL.py
index 03a2c36a1..15ad15115 100644
--- a/test/test_YoutubeDL.py
+++ b/test/test_YoutubeDL.py
@@ -40,7 +40,7 @@ class YDL(FakeYDL):
def process_info(self, info_dict):
self.downloaded_info_dicts.append(info_dict.copy())
- def to_screen(self, msg):
+ def to_screen(self, msg, *args, **kwargs):
self.msgs.append(msg)
def dl(self, *args, **kwargs):