From 72ba4879304c2082fecbb472e6cc05ee2d154a3b Mon Sep 17 00:00:00 2001 From: coletdjnz Date: Fri, 18 Apr 2025 11:34:30 +1200 Subject: [ie/youtube:tab] Extract continuation from empty page (#12938) Fixes https://github.com/yt-dlp/yt-dlp/issues/12933 https://github.com/yt-dlp/yt-dlp/issues/8206 Authored by: coletdjnz --- test/helper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/helper.py') diff --git a/test/helper.py b/test/helper.py index 4169af799..e4cb478e2 100644 --- a/test/helper.py +++ b/test/helper.py @@ -136,7 +136,7 @@ def _iter_differences(got, expected, field): return if op == 'startswith': - if not val.startswith(got): + if not got.startswith(val): yield field, f'should start with {val!r}, got {got!r}' return -- cgit v1.2.3