mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 15:14:57 +00:00
[test/helper] Do not use deprecated method
This commit is contained in:
parent
eae12e3fe3
commit
0fd7fd71b4
1 changed files with 2 additions and 2 deletions
|
@ -137,8 +137,8 @@ def expect_info_dict(self, expected_dict, got_dict):
|
|||
|
||||
|
||||
def assertRegexpMatches(self, text, regexp, msg=None):
|
||||
if hasattr(self, 'assertRegexpMatches'):
|
||||
return self.assertRegexpMatches(text, regexp, msg)
|
||||
if hasattr(self, 'assertRegexp'):
|
||||
return self.assertRegexp(text, regexp, msg)
|
||||
else:
|
||||
m = re.match(regexp, text)
|
||||
if not m:
|
||||
|
|
Loading…
Reference in a new issue