Skip to content

Commit

Permalink
Fix version
Browse files Browse the repository at this point in the history
  • Loading branch information
asvetlov committed Aug 23, 2014
1 parent df3b0f2 commit b46871f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/version_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ def test_beta(self):
self.assertEqual((0, 1, 2, 'beta', 0), _parse_version('0.1.2b'))

def test_rc(self):
self.assertEqual((0, 1, 2, 'candidate', 5), _parse_version('0.1.2rc5'))
self.assertEqual((0, 1, 2, 'candidate', 0), _parse_version('0.1.2rc'))
self.assertEqual((0, 1, 2, 'candidate', 5), _parse_version('0.1.2c5'))
self.assertEqual((0, 1, 2, 'candidate', 0), _parse_version('0.1.2c'))

def test_final(self):
self.assertEqual((0, 1, 2, 'final', 0), _parse_version('0.1.2'))
Expand Down

0 comments on commit b46871f

Please sign in to comment.