diff options
| author | PJ Eby <distutils-sig@python.org> | 2005-09-24 19:48:28 +0000 |
|---|---|---|
| committer | PJ Eby <distutils-sig@python.org> | 2005-09-24 19:48:28 +0000 |
| commit | 9159d6d8471cb8020cc870c8f5e549246c010f3f (patch) | |
| tree | 71358f5d9d0eb744699cedf525dab1566309e510 /setuptools/tests/test_resources.py | |
| parent | 88c77fe952cfe6eb8caa65c1c6ae709a2e7fbc55 (diff) | |
| download | python-setuptools-git-9159d6d8471cb8020cc870c8f5e549246c010f3f.tar.gz | |
Fix a problem with inconsistent quoting of "extras", reported by Ian
Bicking on the distutils-sig.
--HG--
branch : setuptools
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041253
Diffstat (limited to 'setuptools/tests/test_resources.py')
| -rw-r--r-- | setuptools/tests/test_resources.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/tests/test_resources.py b/setuptools/tests/test_resources.py index ee3de5c5..87648f1c 100644 --- a/setuptools/tests/test_resources.py +++ b/setuptools/tests/test_resources.py @@ -333,7 +333,7 @@ class RequirementsTests(TestCase): self.assertEqual(r1,r2) self.assertEqual(r1,r3) self.assertEqual(r1.extras, ("foo","bar")) - self.assertEqual(r2.extras, ("bar","FOO")) + self.assertEqual(r2.extras, ("bar","foo")) # extras are normalized self.assertEqual(hash(r1), hash(r2)) self.assertEqual( hash(r1), hash(("twisted", ((">=",parse_version("1.2")),), |
