diff options
Diffstat (limited to 'test/test_download.py')
| -rw-r--r-- | test/test_download.py | 5 | 
1 files changed, 2 insertions, 3 deletions
| diff --git a/test/test_download.py b/test/test_download.py index 128ff9ae4..8b9b83373 100644 --- a/test/test_download.py +++ b/test/test_download.py @@ -74,9 +74,8 @@ def generator(test_case):              print('Skipping: {0}'.format(test_case['skip']))              return -        params = dict(self.parameters) # Duplicate it locally -        for p in test_case.get('params', {}): -            params[p] = test_case['params'][p] +        params = self.parameters.copy() +        params.update(test_case.get('params', {}))          fd = FileDownloader(params)          fd.add_info_extractor(ie()) | 
