Fixed #18224 -- Changed the dev version number.

Following the move from SVN to git.
This commit is contained in:
Aymeric Augustin 2012-04-29 13:40:10 +02:00
parent 905bd7fb44
commit 02a5b41db4
3 changed files with 29 additions and 47 deletions

View file

@ -8,7 +8,7 @@ class VersionTests(TestCase):
def test_development(self):
ver_tuple = (1, 4, 0, 'alpha', 0)
# This will return a different result when it's run within or outside
# of a SVN checkout: 1.4.devNNNNN or 1.4.
# of a git clone: 1.4.devYYYYMMDDHHMMSS or 1.4.
ver_string = get_version(ver_tuple)
self.assertRegexpMatches(ver_string, r'1\.4(\.dev\d+)?')