summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAymeric Augustin <aymeric.augustin@m4x.org>2012-04-29 13:40:10 +0200
committerAymeric Augustin <aymeric.augustin@m4x.org>2012-04-29 13:40:10 +0200
commit02a5b41db4ff8544f93a5d9854b346a9aae4f556 (patch)
treeb9041003697ed9a2e803cde8db12aed98a1b6f0b /tests
parent905bd7fb44a0dbd0be0d455ab428c388714ae700 (diff)
Fixed #18224 -- Changed the dev version number.
Following the move from SVN to git.
Diffstat (limited to 'tests')
-rw-r--r--tests/regressiontests/version/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/regressiontests/version/tests.py b/tests/regressiontests/version/tests.py
index 1a67483c1f..9b849ee4ba 100644
--- a/tests/regressiontests/version/tests.py
+++ b/tests/regressiontests/version/tests.py
@@ -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+)?')