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 8a81e92 commit 2dccb17Copy full SHA for 2dccb17
src/test/java/com/fasterxml/jackson/core/TestJsonPointer.java
@@ -259,6 +259,7 @@ public void testPointerSerialization() throws Exception {
259
final String INPUT = "/Image/15/name";
260
JsonPointer original = JsonPointer.compile(INPUT);
261
JsonPointer copy = unpickle(pickle(original), JsonPointer.class);
262
+ assertNotSame(copy, original);
263
assertEquals(original, copy);
264
265
}
0 commit comments