summaryrefslogtreecommitdiff
path: root/dev-python/pyquery/files/pyquery-1.4.1-tests-pypy.patch
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python/pyquery/files/pyquery-1.4.1-tests-pypy.patch')
-rw-r--r--dev-python/pyquery/files/pyquery-1.4.1-tests-pypy.patch20
1 files changed, 0 insertions, 20 deletions
diff --git a/dev-python/pyquery/files/pyquery-1.4.1-tests-pypy.patch b/dev-python/pyquery/files/pyquery-1.4.1-tests-pypy.patch
deleted file mode 100644
index f5f160a138de..000000000000
--- a/dev-python/pyquery/files/pyquery-1.4.1-tests-pypy.patch
+++ /dev/null
@@ -1,20 +0,0 @@
-diff --git a/tests/test_pyquery.py b/tests/test_pyquery.py
-index d29b27b..e6a9230 100644
---- a/tests/test_pyquery.py
-+++ b/tests/test_pyquery.py
-@@ -7,6 +7,7 @@ import os
- import sys
- import time
- import unittest
-+import platform
- from lxml import etree
- from pyquery.pyquery import PyQuery as pq, no_default
- from pyquery.openers import HAS_REQUEST
-@@ -33,6 +34,7 @@ path_to_invalid_file = os.path.join(dirname, 'invalid.xml')
-
- class TestUnicode(TestCase):
-
-+ @unittest.skipIf(sys.hexversion > 0x3000000 and 'pypy' in platform.python_implementation().lower(), "broken on pypy3")
- def test_unicode(self):
- xml = pq(u"<html><p>é</p></html>")
- self.assertEqual(type(xml.html()), text_type)