phulv94 opened a new pull request, #23369: URL: https://github.com/apache/kafka/pull/23369
Replace Hamcrest matchers with plain JUnit 5 assertions in KTableFilterTest, KTableImplTest, KTableMapValuesTest and KTableSourceTest: - assertThat(x, is(true/false)) -> assertTrue/assertFalse(x) - assertThat(list, hasItem(s)) -> assertTrue(list.contains(s)) Removes the now-unused org.hamcrest.* static imports. Test-only change, no production code affected. Co-Authored-By: Claude Opus 4.8 <[email protected]> -- 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]
