This is an automated email from the ASF dual-hosted git repository. chaokunyang pushed a commit to branch releases-0.12 in repository https://gitbox.apache.org/repos/asf/fory.git
commit 14b4824495657468f31b20bcded843be0116caa9 Author: chaokunyang <[email protected]> AuthorDate: Sat Sep 20 01:12:56 2025 +0800 fix compatible data provider --- java/fory-core/src/test/java/org/apache/fory/ForyTestBase.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/java/fory-core/src/test/java/org/apache/fory/ForyTestBase.java b/java/fory-core/src/test/java/org/apache/fory/ForyTestBase.java index 2bb24606e..a286de792 100644 --- a/java/fory-core/src/test/java/org/apache/fory/ForyTestBase.java +++ b/java/fory-core/src/test/java/org/apache/fory/ForyTestBase.java @@ -97,6 +97,11 @@ public abstract class ForyTestBase { return new Object[][] {{false}, {true}}; } + @DataProvider + public static Object[][] compatible() { + return new Object[][] {{false}, {true}}; + } + @DataProvider public static Object[][] trackingRefFory() { return new Object[][] { --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
