summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2015-01-06 10:01:51 -0500
committerJason R. Coombs <jaraco@jaraco.com>2015-01-06 10:01:51 -0500
commit1524a98d7e0e5344134ef51e77cfe5a04e582a8f (patch)
tree564aff3488439dc3c9e75ac46bc529a1010bc335
parent32ce474415accc4ad11fdbab57f7a65176d4197b (diff)
downloadpython-setuptools-git-1524a98d7e0e5344134ef51e77cfe5a04e582a8f.tar.gz
Equal signs are now allowed in entry point names.
-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 4a82167b..00ba0cf5 100644
--- a/pkg_resources/tests/test_resources.py
+++ b/pkg_resources/tests/test_resources.py
@@ -297,7 +297,7 @@ class TestEntryPoints:
def testRejects(self):
for ep in [
- "foo", "x=1=2", "x=a:b:c", "q=x/na", "fez=pish:tush-z", "x=f[a]>2",
+ "foo", "x=a:b:c", "q=x/na", "fez=pish:tush-z", "x=f[a]>2",
]:
try: EntryPoint.parse(ep)
except ValueError: pass