diff options
author | Artyom Nikitin <a.nikitin@edadeal.ru> | 2020-11-24 23:20:35 +0300 |
---|---|---|
committer | Artyom Nikitin <a.nikitin@edadeal.ru> | 2020-11-24 23:20:35 +0300 |
commit | 9310d48af5bfcde50f9b05fdd43deeafec11c805 (patch) | |
tree | 4f87fa648f19c673febc1ed0c170fec6944be264 | |
parent | 1268e09ffaead08f22184b63b3ad34bb41ab8bab (diff) | |
download | python-json-patch-9310d48af5bfcde50f9b05fdd43deeafec11c805.tar.gz |
test: fix
-rwxr-xr-x | tests.py | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -953,8 +953,10 @@ class CustomOperationTests(unittest.TestCase): class JsonPatch(jsonpatch.JsonPatch): operations = MappingProxyType( - identity=IdentityOperation, - **jsonpatch.JsonPatch.operations + dict( + identity=IdentityOperation, + **jsonpatch.JsonPatch.operations + ) ) patch = JsonPatch([{'op': 'identity', 'path': '/'}]) |