summaryrefslogtreecommitdiff
path: root/dev-python/wsgiproxy2/files/wsgiproxy2-0.4.6-tests.patch
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python/wsgiproxy2/files/wsgiproxy2-0.4.6-tests.patch')
-rw-r--r--dev-python/wsgiproxy2/files/wsgiproxy2-0.4.6-tests.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/dev-python/wsgiproxy2/files/wsgiproxy2-0.4.6-tests.patch b/dev-python/wsgiproxy2/files/wsgiproxy2-0.4.6-tests.patch
deleted file mode 100644
index 77515b85b027..000000000000
--- a/dev-python/wsgiproxy2/files/wsgiproxy2-0.4.6-tests.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-diff --git a/wsgiproxy/test_wsgiproxy.py b/wsgiproxy/test_wsgiproxy.py
-index 39355d9..7806d3b 100644
---- a/wsgiproxy/test_wsgiproxy.py
-+++ b/wsgiproxy/test_wsgiproxy.py
-@@ -1,4 +1,6 @@
- # -*- coding: utf-8 -*-
-+import sys
-+import platform
- import unittest
- from wsgiproxy import proxies
- from webtest import TestApp
-@@ -86,6 +88,7 @@ class TestHttplib(unittest.TestCase):
- headers=[('Transfer-Encoding', 'chunked')])
- resp.mustcontain(no='chunked')
-
-+ @unittest.skipIf(sys.hexversion < 0x3000000 and 'pypy' not in platform.python_implementation().lower(), "broken on cpython2")
- def test_quoted_utf8_url(self):
- path = '/targets/NR2F1%C3%82-human/'
- resp = self.app.get(path)