summaryrefslogtreecommitdiff
path: root/tests/test_parsing.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_parsing.py')
-rwxr-xr-xtests/test_parsing.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/test_parsing.py b/tests/test_parsing.py
index 548826a..2d612a1 100755
--- a/tests/test_parsing.py
+++ b/tests/test_parsing.py
@@ -34,7 +34,10 @@ class ParsingTestCase(unittest.TestCase):
('0.1.2-rc1', [0, 1, 2, ('rc1',), ()]),
('0.1.2-rc1.3.4', [0, 1, 2, ('rc1', '3', '4'), ()]),
('0.1.2+build42-12.2012-01-01.12h23', [0, 1, 2, (), ('build42-12', '2012-01-01', '12h23')]),
- ('0.1.2-rc1.3-14.15+build.2012-01-01.11h34', [0, 1, 2, ('rc1', '3-14', '15'), ('build', '2012-01-01', '11h34')]),
+ (
+ '0.1.2-rc1.3-14.15+build.2012-01-01.11h34',
+ [0, 1, 2, ('rc1', '3-14', '15'), ('build', '2012-01-01', '11h34')],
+ ),
]
def test_invalid(self):