diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-06-17 13:35:04 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-06-17 14:20:40 +0530 |
commit | 7e9a61258543f64113e779f2f82fe7a29827489d (patch) | |
tree | b78a67b7b49829ecc1249ca2aaaf5bbaf4d66373 /test/test_YoutubeDL.py | |
parent | 0df111a371f191a2513e681ec30fc8563545c983 (diff) | |
download | hypervideo-pre-7e9a61258543f64113e779f2f82fe7a29827489d.tar.lz hypervideo-pre-7e9a61258543f64113e779f2f82fe7a29827489d.tar.xz hypervideo-pre-7e9a61258543f64113e779f2f82fe7a29827489d.zip |
Add option `--lazy-playlist` to process entries as they are received
Diffstat (limited to 'test/test_YoutubeDL.py')
-rw-r--r-- | test/test_YoutubeDL.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_YoutubeDL.py b/test/test_YoutubeDL.py index 3aafc3c4f..03a2c36a1 100644 --- a/test/test_YoutubeDL.py +++ b/test/test_YoutubeDL.py @@ -1046,7 +1046,7 @@ class TestYoutubeDL(unittest.TestCase): for name, func, expected_eval in ( ('list', list_entries, INDICES), ('Generator', generator_entries, generator_eval), - ('LazyList', lazylist_entries, generator_eval), + # ('LazyList', lazylist_entries, generator_eval), # Generator and LazyList follow the exact same code path ('PagedList', pagedlist_entries, pagedlist_eval), ): evaluated = [] |