This is an automated email from the ASF dual-hosted git repository. cmccabe pushed a commit to branch 3.4 in repository https://gitbox.apache.org/repos/asf/kafka.git
The following commit(s) were added to refs/heads/3.4 by this push: new b8732bb649e HOFIX: fix missing import in SnapshottableHashTableTest.java b8732bb649e is described below commit b8732bb649e58f72af25dfc3fbedcf6858b6d767 Author: Colin Patrick McCabe <cmcc...@apache.org> AuthorDate: Tue Aug 8 16:36:59 2023 -0700 HOFIX: fix missing import in SnapshottableHashTableTest.java --- .../test/java/org/apache/kafka/timeline/SnapshottableHashTableTest.java | 1 + 1 file changed, 1 insertion(+) diff --git a/server-common/src/test/java/org/apache/kafka/timeline/SnapshottableHashTableTest.java b/server-common/src/test/java/org/apache/kafka/timeline/SnapshottableHashTableTest.java index 8846262c2c5..da49b91ff97 100644 --- a/server-common/src/test/java/org/apache/kafka/timeline/SnapshottableHashTableTest.java +++ b/server-common/src/test/java/org/apache/kafka/timeline/SnapshottableHashTableTest.java @@ -30,6 +30,7 @@ import org.junit.jupiter.api.Timeout; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertNotNull; +import static org.junit.jupiter.api.Assertions.assertNull; import static org.junit.jupiter.api.Assertions.assertThrows; import static org.junit.jupiter.api.Assertions.assertTrue; import static org.junit.jupiter.api.Assertions.assertFalse;