diff options
Diffstat (limited to 'test/helper.py')
| -rw-r--r-- | test/helper.py | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/test/helper.py b/test/helper.py index 79a0ede48..777119ea5 100644 --- a/test/helper.py +++ b/test/helper.py @@ -34,10 +34,10 @@ def try_rm(filename):  class FakeYDL(YoutubeDL): -    def __init__(self): +    def __init__(self, override=None):          # Different instances of the downloader can't share the same dictionary          # some test set the "sublang" parameter, which would break the md5 checks. -        params = get_params() +        params = get_params(override=override)          super(FakeYDL, self).__init__(params)          self.result = []  | 
