summaryrefslogtreecommitdiff
path: root/tests/test_parsing.py
diff options
context:
space:
mode:
authorRaphaël Barrois <raphael.barrois@polytechnique.org>2019-08-20 22:55:10 +0200
committerRaphaël Barrois <raphael.barrois@polytechnique.org>2019-08-24 15:13:09 +0200
commita7c2b75d48587fce826613efced163272b11e354 (patch)
treec022cf3401dce1a1ab98394c35ff4c85fd980811 /tests/test_parsing.py
parent36f5b30d2fb6ad535b322a875c8bfb297e97aacc (diff)
downloadsemantic-version-a7c2b75d48587fce826613efced163272b11e354.tar.gz
Lint test code.
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):