summaryrefslogtreecommitdiff
path: root/tests/version/tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/version/tests.py')
-rw-r--r--tests/version/tests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/version/tests.py b/tests/version/tests.py
index a7ae848984..b0566685b6 100644
--- a/tests/version/tests.py
+++ b/tests/version/tests.py
@@ -17,9 +17,9 @@ class VersionTests(TestCase):
tuples_to_strings = (
((1, 4, 0, 'alpha', 1), '1.4a1'),
((1, 4, 0, 'beta', 1), '1.4b1'),
- ((1, 4, 0, 'rc', 1), '1.4c1'),
+ ((1, 4, 0, 'rc', 1), '1.4rc1'),
((1, 4, 0, 'final', 0), '1.4'),
- ((1, 4, 1, 'rc', 2), '1.4.1c2'),
+ ((1, 4, 1, 'rc', 2), '1.4.1rc2'),
((1, 4, 1, 'final', 0), '1.4.1'),
)
for ver_tuple, ver_string in tuples_to_strings: