summaryrefslogtreecommitdiff
path: root/tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests.py')
-rwxr-xr-xtests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests.py b/tests.py
index 2dfc18c..c676121 100755
--- a/tests.py
+++ b/tests.py
@@ -754,7 +754,7 @@ class CustomJsonPointerTests(unittest.TestCase):
self.assertIsInstance(op.pointer, CustomJsonPointer)
self.assertEqual(op.pointer_cls, CustomJsonPointer)
- def test_json_patch_wtih_prefix_pointer(self):
+ def test_json_patch_with_prefix_pointer(self):
res = jsonpatch.apply_patch(
{'foo': {'bar': {}}}, [{'op': 'add', 'path': '/baz', 'value': 'qux'}],
pointer_cls=PrefixJsonPointer,