diff options
author | Steve Kowalik <steven@wedontsleep.org> | 2016-02-09 17:12:47 +1100 |
---|---|---|
committer | Steve Kowalik <steven@wedontsleep.org> | 2016-02-09 17:12:47 +1100 |
commit | 43d0308ad6a8c83be645b09e8c1871b36ff3c4c9 (patch) | |
tree | 58c14f1f99711caad2df1ea3a001868c753f6a96 /pkg_resources/tests/test_resources.py | |
parent | cf9402a0d8b83b15353801b9a16e1330426a049c (diff) | |
download | external_python_setuptools-43d0308ad6a8c83be645b09e8c1871b36ff3c4c9.tar.gz external_python_setuptools-43d0308ad6a8c83be645b09e8c1871b36ff3c4c9.tar.bz2 external_python_setuptools-43d0308ad6a8c83be645b09e8c1871b36ff3c4c9.zip |
Correct tests after the move to packaging 16.1.
Diffstat (limited to 'pkg_resources/tests/test_resources.py')
-rw-r--r-- | pkg_resources/tests/test_resources.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg_resources/tests/test_resources.py b/pkg_resources/tests/test_resources.py index 4241765a..8066753b 100644 --- a/pkg_resources/tests/test_resources.py +++ b/pkg_resources/tests/test_resources.py @@ -383,7 +383,7 @@ class TestRequirements: r2 = Requirement.parse("Twisted[bar,FOO]>=1.2") assert r1 == r2 assert r1.extras == ("foo","bar") - assert r2.extras == ("bar","foo") # extras are normalized + assert r2.extras == ("foo","bar") assert hash(r1) == hash(r2) assert ( hash(r1) |