This is an automated email from the ASF dual-hosted git repository. anmolnar pushed a commit to branch HBASE-29081 in repository https://gitbox.apache.org/repos/asf/hbase.git
commit 8a1aba8fd7d85352cb493616dec322c1578a656b Author: Andor Molnar <[email protected]> AuthorDate: Wed May 20 11:15:25 2026 -0500 HBASE-29081. Fix build errors --- hbase-common/src/test/java/org/apache/hadoop/hbase/TestTableName.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hbase-common/src/test/java/org/apache/hadoop/hbase/TestTableName.java b/hbase-common/src/test/java/org/apache/hadoop/hbase/TestTableName.java index f1eb1160f7a..1e6fa6aa438 100644 --- a/hbase-common/src/test/java/org/apache/hadoop/hbase/TestTableName.java +++ b/hbase-common/src/test/java/org/apache/hadoop/hbase/TestTableName.java @@ -181,8 +181,8 @@ public class TestTableName { for (String suffix : invalidSuffixes) { Configuration conf = HBaseConfiguration.create(); conf.set(HConstants.HBASE_META_TABLE_SUFFIX, suffix); - assertThrows("Expected IllegalArgumentException for suffix: " + suffix, - IllegalArgumentException.class, () -> TableName.initializeHbaseMetaTableName(conf)); + assertThrows(IllegalArgumentException.class, () -> TableName.initializeHbaseMetaTableName(conf), + "Expected IllegalArgumentException for suffix: " + suffix); } } }
