File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
src/test/java/org/everit/json/schema Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 219
219
<dependency >
220
220
<groupId >org.json</groupId >
221
221
<artifactId >json</artifactId >
222
- <version >20201115 </version >
222
+ <version >20220320 </version >
223
223
</dependency >
224
224
<dependency >
225
225
<groupId >com.google.guava</groupId >
Original file line number Diff line number Diff line change @@ -99,12 +99,12 @@ public void tildeEscaping() {
99
99
100
100
@ Test
101
101
public void backslashEscaping () {
102
- assertSame (document .get ("i\\ j" ), query ("/i\\ \\ j" ));
102
+ assertSame (document .get ("i\\ j" ), query ("/i\\ j" ));
103
103
}
104
104
105
105
@ Test
106
106
public void quotationEscaping () {
107
- assertSame (document .get ("k\" l" ), query ("/k\\ \\ \\ \ " l" ));
107
+ assertSame (document .get ("k\" l" ), query ("/k\" l" ));
108
108
}
109
109
110
110
@ Test
@@ -176,7 +176,7 @@ public void toStringEscaping() {
176
176
.append ("\" " )
177
177
.append (0 )
178
178
.build ();
179
- assertEquals ("/obj/other~0key/another~1key/\\ \ " /0" , pointer .toString ());
179
+ assertEquals ("/obj/other~0key/another~1key/\" /0" , pointer .toString ());
180
180
}
181
181
182
182
@ Test
You can’t perform that action at this time.
0 commit comments