aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/tests/test_dist.py
diff options
context:
space:
mode:
Diffstat (limited to 'setuptools/tests/test_dist.py')
-rw-r--r--setuptools/tests/test_dist.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/setuptools/tests/test_dist.py b/setuptools/tests/test_dist.py
index 26c271b1..b57cc9d3 100644
--- a/setuptools/tests/test_dist.py
+++ b/setuptools/tests/test_dist.py
@@ -11,6 +11,7 @@ from setuptools.dist import (
check_package_data,
DistDeprecationWarning,
)
+from setuptools import sic
from setuptools import Distribution
from setuptools.extern.six.moves.urllib.request import pathname2url
from setuptools.extern.six.moves.urllib_parse import urljoin
@@ -140,10 +141,10 @@ def __read_test_cases():
'version': '1.0.0',
'author': 'Snorri Sturluson'}),
(
- 'Normalized version',
+ 'Bypass normalized version',
dict(
name='foo',
- version='1.0.0a',
+ version=sic('1.0.0a'),
),
),
]