Copilot commented on code in PR #6204: URL: https://github.com/apache/ignite-3/pull/6204#discussion_r2189735485
########## modules/compatibility-tests/src/integrationTest/java/org/apache/ignite/internal/client/CurrentClientWithOldServerCompatibilityTest.java: ########## @@ -25,10 +26,12 @@ import org.jetbrains.annotations.Nullable; import org.junit.jupiter.api.AfterEach; import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.params.provider.MethodSource; /** * Tests that current Java client can work with all older server versions. */ Review Comment: The class is annotated with `@MethodSource("serverVersions")` but missing `@ParameterizedClass`. Without it, parameterized execution won't run. Add `@ParameterizedClass` at the class level. ```suggestion import org.junit.jupiter.params.provider.MethodSource; import org.junit.jupiter.params.ParameterizedClass; /** * Tests that current Java client can work with all older server versions. */ @ParameterizedClass ``` -- 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: notifications-unsubscr...@ignite.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org