mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-07-24 20:48:31 -07:00
Also update HOMEPAGE. Package-Manager: Portage-3.0.7, Repoman-3.0.1 Signed-off-by: Louis Sautier <sbraz@gentoo.org>
23 lines
1.1 KiB
Diff
23 lines
1.1 KiB
Diff
commit beb6a364de93a429398a9491e16f60a7aa82f51d
|
|
Author: Louis Sautier <sautier.louis@gmail.com>
|
|
Date: Tue Sep 22 00:46:38 2020 +0200
|
|
|
|
Fix tests with PyPy, remove unused Python2-related code
|
|
|
|
diff --git a/flask_api/tests/test_parsers.py b/flask_api/tests/test_parsers.py
|
|
index 90a6b83..b7968f6 100644
|
|
--- a/flask_api/tests/test_parsers.py
|
|
+++ b/flask_api/tests/test_parsers.py
|
|
@@ -36,9 +36,9 @@ class ParserTests(unittest.TestCase):
|
|
with self.assertRaises(exceptions.ParseError) as context:
|
|
parser.parse(stream, mediatypes.MediaType('application/json'))
|
|
detail = str(context.exception)
|
|
- expected_py2 = 'JSON parse error - Expecting property name: line 1 column 1 (char 1)'
|
|
+ expected_pypy = 'JSON parse error - Key name must be string at char: line 1 column 2 (char 1)'
|
|
expected_py3 = 'JSON parse error - Expecting property name enclosed in double quotes: line 1 column 2 (char 1)'
|
|
- self.assertIn(detail, (expected_py2, expected_py3))
|
|
+ self.assertIn(detail, (expected_pypy, expected_py3))
|
|
|
|
def test_invalid_multipart(self):
|
|
parser = parsers.MultiPartParser()
|