We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01348ad commit 0dd0fbcCopy full SHA for 0dd0fbc
tests.json
@@ -418,6 +418,12 @@
418
{ "comment": "Removing nonexistent index",
419
"doc": ["foo", "bar"],
420
"patch": [{"op": "remove", "path": "/2"}],
421
- "error": "removing a nonexistent index should fail" }
+ "error": "removing a nonexistent index should fail" },
422
+
423
+ { "comment": "Patch with different capitalisation than doc",
424
+ "doc": {"foo":"bar"},
425
+ "patch": [{"op": "add", "path": "/FOO", "value": "BAR"}],
426
+ "expected": {"foo": "bar", "FOO": "BAR"}
427
+ }
428
429
]
0 commit comments