]> jfr.im git - yt-dlp.git/blobdiff - test/test_YoutubeDL.py
[ie] Migrate commonly plural fields to lists (#8917)
[yt-dlp.git] / test / test_YoutubeDL.py
index 0087cbc941fbf638894cc42cd67f104ae6a5470d..6be47af97f7cb8ff1792a92c1df3aa65b32343b0 100644 (file)
@@ -941,7 +941,7 @@ def test_match_filter(self):
         def get_videos(filter_=None):
             ydl = YDL({'match_filter': filter_, 'simulate': True})
             for v in videos:
-                ydl.process_ie_result(v, download=True)
+                ydl.process_ie_result(v.copy(), download=True)
             return [v['id'] for v in ydl.downloaded_info_dicts]
 
         res = get_videos()