Skip to content

Commit 64d27a9

Browse files
authored
Sync with revert of core/1200 (for 3.0.0-rc8) (#72)
1 parent 9aaba37 commit 64d27a9

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

jakarta-jsonp/src/test/java/tools/jackson/datatype/jsonp/JsonPatchDeserializationTest.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public void testDeserializationAndPatching() throws Exception {
2020
final String json = "[" +
2121
"{" +
2222
"\"op\":\"replace\"," +
23-
"\"path\":\"\\/name\"," +
23+
"\"path\":\"/name\"," +
2424
"\"value\":\"Json\"" +
2525
"}" +
2626
"]";
@@ -101,5 +101,4 @@ public String toString() {
101101
'}';
102102
}
103103
}
104-
105104
}

jsr-353/src/test/java/tools/jackson/datatype/jsr353/JsonPatchDeserializationTest.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public void testArrayOfObjectsDeserializationAndPatching() throws Exception {
2323
final String json = "[" +
2424
"{" +
2525
"\"op\":\"replace\"," +
26-
"\"path\":\"\\/name\"," +
26+
"\"path\":\"/name\"," +
2727
"\"value\":\"Json\"" +
2828
"}" +
2929
"]";
@@ -126,5 +126,4 @@ public String toString() {
126126
'}';
127127
}
128128
}
129-
130129
}

0 commit comments

Comments
 (0)