Skip to content

Commit 9310d48

Browse files
author
Artyom Nikitin
committed
test: fix
1 parent 1268e09 commit 9310d48

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

tests.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -953,8 +953,10 @@ def apply(self, obj):
953953

954954
class JsonPatch(jsonpatch.JsonPatch):
955955
operations = MappingProxyType(
956-
identity=IdentityOperation,
957-
**jsonpatch.JsonPatch.operations
956+
dict(
957+
identity=IdentityOperation,
958+
**jsonpatch.JsonPatch.operations
959+
)
958960
)
959961

960962
patch = JsonPatch([{'op': 'identity', 'path': '/'}])

0 commit comments

Comments
 (0)