projects
/
youtube-dl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
db17534
)
[test_utils] Make test more realistically (#4377)
author
Philipp Hagemeister
<phihag@phihag.de>
Sat, 6 Dec 2014 11:36:23 +0000
(12:36 +0100)
committer
Philipp Hagemeister
<phihag@phihag.de>
Sat, 6 Dec 2014 11:36:23 +0000
(12:36 +0100)
test/test_utils.py
patch
|
blob
|
history
diff --git
a/test/test_utils.py
b/test/test_utils.py
index 5c7bf5175cc4d718c37b1f379fce89b7a9a9a5c2..aaa293ff8cae05f7f1db0cd627ee1220d83e3b91 100644
(file)
--- a/
test/test_utils.py
+++ b/
test/test_utils.py
@@
-385,7
+385,7
@@
class TestUtil(unittest.TestCase):
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()