summarylogtreecommitdiffstats
path: root/0001-Remove-encoding-parameter-from-json.load-for-Python-.patch
blob: e211b3d402f77392492e1f1b55482f357a583767 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
From d88e32f1b05ad287a8d612e6f61ed7432fc72957 Mon Sep 17 00:00:00 2001
From: Karthikeyan Singaravelan <tir.karthi@gmail.com>
Date: Mon, 10 Aug 2020 10:06:14 +0530
Subject: [PATCH] Remove encoding parameter from json.load for Python 3.9
 compatibility. (#151)

---
 tests/test_features.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/test_features.py b/tests/test_features.py
index 529de70..e2b56e9 100644
--- a/tests/test_features.py
+++ b/tests/test_features.py
@@ -82,7 +82,7 @@ class FeaturesTest(unittest.TestCase):
                 ' "properties": {"summary": "The first feature",'
                 ' "link": "http://example.org/features/1",'
                 ' "title": "Feature 1"}}')
-        feature = geojson.loads(json, object_hook=factory, encoding="utf-8")
+        feature = geojson.loads(json, object_hook=factory)
         self.assertEqual(repr(type(feature)),
                          "<class 'geojson.examples.SimpleWebFeature'>")
         self.assertEqual(feature.id, '1')
-- 
2.32.0