summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArtyom Nikitin <a.nikitin@edadeal.ru>2020-11-17 11:29:23 +0300
committerArtyom Nikitin <a.nikitin@edadeal.ru>2020-11-17 11:29:23 +0300
commit4d073929b732af3403ae9fac92433e0066f0061a (patch)
tree76973f29ceedd95e2e64125434cc7656df36e92f
parentd24fa96a7ad1f01cb793c0efe835a76ddd3b2fc7 (diff)
downloadpython-json-patch-4d073929b732af3403ae9fac92433e0066f0061a.tar.gz
style: fix typo
-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,