chaokunyang commented on PR #2271:
URL: https://github.com/apache/fury/pull/2271#issuecomment-2927371613
You can take a look at failed tests, it's because they registered a special
serializer for those classes:
```java
@Test(dataProvider = "foryCopyConfig")
public void testJDKCompatibleListCopy(Fory fory) {
fory.registerSerializer(ArrayList.class, new
ObjectStreamSerializer(fory, ArrayList.class));
List<String> list = new ArrayList<>(ImmutableList.of("a", "b", "c",
"d"));
copyCheck(fory, list);
fory.registerSerializer(LinkedList.class, new
ObjectStreamSerializer(fory, LinkedList.class));
copyCheck(fory, new LinkedList<>(list));
fory.registerSerializer(Vector.class, new ObjectStreamSerializer(fory,
Vector.class));
copyCheck(fory, new Vector<>(list));
}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]