summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2021-11-15 17:45:48 -0500
committerJason R. Coombs <jaraco@jaraco.com>2021-11-15 17:45:48 -0500
commite841867c98ff19811aaa85c3b131152958ccc129 (patch)
tree65ae98992d4e7ade63cd90f6b740c67258891bda
parent47b9bf5e5f75cadf20fc1eedbd26e1945a3be0cc (diff)
downloadpython-setuptools-git-e841867c98ff19811aaa85c3b131152958ccc129.tar.gz
Replace invalid local version with a valid form.
-rw-r--r--pkg_resources/tests/test_resources.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg_resources/tests/test_resources.py b/pkg_resources/tests/test_resources.py
index 965a7c00..107dda7b 100644
--- a/pkg_resources/tests/test_resources.py
+++ b/pkg_resources/tests/test_resources.py
@@ -703,7 +703,7 @@ class TestParsing:
)
def test_local_version(self):
- req, = parse_requirements('foo==1.0.org1')
+ req, = parse_requirements('foo==1.0+org1')
def test_spaces_between_multiple_versions(self):
req, = parse_requirements('foo>=1.0, <3')