1
0
mirror of https://github.com/yt-dlp/yt-dlp synced 2025-06-30 11:02:54 -05:00

[utils] lookup_unit_table: Match word boundary instead of end of string

This commit is contained in:
Jaime Marquínez Ferrándiz
2016-03-19 11:42:35 +01:00
parent 0d769bcb78
commit 782b1b5bd1
2 changed files with 3 additions and 1 deletions

View File

@ -702,6 +702,8 @@ class TestUtil(unittest.TestCase):
self.assertEqual(parse_count('1.000'), 1000)
self.assertEqual(parse_count('1.1k'), 1100)
self.assertEqual(parse_count('1.1kk'), 1100000)
self.assertEqual(parse_count('1.1kk '), 1100000)
self.assertEqual(parse_count('1.1kk views'), 1100000)
def test_version_tuple(self):
self.assertEqual(version_tuple('1'), (1,))