diff options
| author | Tim Graham <timograham@gmail.com> | 2015-11-17 11:51:26 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-11-19 10:00:09 -0500 |
| commit | 4921d4e59f06c8add15a347c8b97b72b8d9baa74 (patch) | |
| tree | 2a66b1ab3b2d639301a696e057d52a15d498b9ef /tests/version | |
| parent | fa08d27fb714534670b431fde0cd04a17d637585 (diff) | |
Fixed #25769 -- Updated get_version() release candidate naming for PEP 0440.
Diffstat (limited to 'tests/version')
| -rw-r--r-- | tests/version/tests.py | 4 |
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: |
