yuxiqian commented on PR #3767: URL: https://github.com/apache/flink-cdc/pull/3767#issuecomment-2753659456
Hi @JNSimba, could you please rebase this PR with latest `master` when available? Code style verifier has been updated to enforce JUnit 5 + AssertJ framework and these classes might need to be migrated: * JUnit 4 style test annotations should be changed to JUnit 5 equivalents * `org.junit.Test` => `org.junit.jupiter.api.Test` * `@Before`, `@BeforeClass` => `@BeforeEach`, `@BeforeAll` * `@After`, `@AfterClass` => `@AfterEach`, `@AfterAll` * JUnit Assertions / Hamcrest Assertions are not allowed, including: * `org.junit.Assert` * `org.junit.jupiter.api.Assertions` * `org.hamcrest.*` Use `org.assertj.core.api.Assertions` instead. Running `mvn verify -DskipTests` locally could check if all these requirements have been satisfied. -- 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: issues-unsubscr...@flink.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org