summaryrefslogtreecommitdiff
path: root/ext_tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'ext_tests.py')
-rwxr-xr-xext_tests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext_tests.py b/ext_tests.py
index 476f66d..5e5ded8 100755
--- a/ext_tests.py
+++ b/ext_tests.py
@@ -35,7 +35,6 @@
https://github.com/json-patch/json-patch-tests """
from functools import partial
-import json
import doctest
import unittest
import jsonpatch
@@ -94,7 +93,8 @@ def get_suite(filenames):
for testfile in filenames:
with open(testfile) as f:
- tests = json.load(f, object_pairs_hook=jsonpatch.multidict)
+ # we use the (potentially) patched version of json.load here
+ tests = jsonpatch.json.load(f)
cls = make_test_case(tests)
suite.addTest(unittest.makeSuite(cls))