mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 01:02:13 +01:00
[test_utils] Make test more realistically (#4377)
This commit is contained in:
parent
db175341c7
commit
47d7c64274
1 changed files with 1 additions and 1 deletions
|
@ -385,7 +385,7 @@ def test_parse_filesize(self):
|
|||
def test_version_tuple(self):
|
||||
self.assertEqual(version_tuple('1'), (1,))
|
||||
self.assertEqual(version_tuple('10.23.344'), (10, 23, 344))
|
||||
self.assertEqual(version_tuple('10-6'), (10, 6)) # avconv style
|
||||
self.assertEqual(version_tuple('10.1-6'), (10, 1, 6)) # avconv style
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main()
|
||||
|
|
Loading…
Reference in a new issue