summaryrefslogtreecommitdiff
path: root/pkg_resources/tests/test_resources.py
diff options
context:
space:
mode:
authorVille Skyttä <ville.skytta@iki.fi>2017-02-24 10:55:44 +0200
committerVille Skyttä <ville.skytta@iki.fi>2017-02-24 19:37:39 +0200
commite753cb42481783ac858ceb518aaac1472075063c (patch)
treea32e98067242439d3fe609cf8672045d04b5cd35 /pkg_resources/tests/test_resources.py
parent4c560effc96a75f337193bc164ad4117b0e333ab (diff)
downloadpython-setuptools-git-e753cb42481783ac858ceb518aaac1472075063c.tar.gz
Python 3.6 invalid escape sequence deprecation fixes
Diffstat (limited to 'pkg_resources/tests/test_resources.py')
-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 f28378b9..b997aaa3 100644
--- a/pkg_resources/tests/test_resources.py
+++ b/pkg_resources/tests/test_resources.py
@@ -593,7 +593,7 @@ class TestParsing:
[Requirement('Twis-Ted>=1.2-1')]
)
assert (
- list(parse_requirements('Twisted >=1.2, \ # more\n<2.0'))
+ list(parse_requirements('Twisted >=1.2, \\ # more\n<2.0'))
==
[Requirement('Twisted>=1.2,<2.0')]
)