From 111dd1b4a896d4f8e811dccce2ee0715adc30654 Mon Sep 17 00:00:00 2001 From: bashonly <88596187+bashonly@users.noreply.github.com> Date: Fri, 31 May 2024 04:14:17 +0000 Subject: [PATCH] tests formatting --- yt_dlp/extractor/lecturio.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yt_dlp/extractor/lecturio.py b/yt_dlp/extractor/lecturio.py index 4927641995..5e59493c63 100644 --- a/yt_dlp/extractor/lecturio.py +++ b/yt_dlp/extractor/lecturio.py @@ -206,7 +206,7 @@ def _real_extract(self, url): class LecturioDeCourseIE(InfoExtractor): _VALID_URL = r'https?://(?:www\.)?lecturio\.de/[^/?#]+/(?P[^/?#&]+)\.kurs' - _TEST = { + _TESTS = [{ 'url': 'https://www.lecturio.de/jura/grundrechte.kurs', 'only_matching': True, }]