This is an automated email from the ASF dual-hosted git repository.
cshannon pushed a commit to branch elasticity
in repository https://gitbox.apache.org/repos/asf/accumulo.git
The following commit(s) were added to refs/heads/elasticity by this push:
new f0f534e614 Add assertion for new Fate table in
MiniAccumuloClusterImplTest
f0f534e614 is described below
commit f0f534e614a8466c6bd73b215b234629b8c41d2f
Author: Christopher L. Shannon <[email protected]>
AuthorDate: Fri Jan 26 12:49:35 2024 -0500
Add assertion for new Fate table in MiniAccumuloClusterImplTest
This updates saneMonitorInfo() test to check that the new table that was
recently added in #4049 is seen
---
.../apache/accumulo/miniclusterImpl/MiniAccumuloClusterImplTest.java | 2 ++
1 file changed, 2 insertions(+)
diff --git
a/minicluster/src/test/java/org/apache/accumulo/miniclusterImpl/MiniAccumuloClusterImplTest.java
b/minicluster/src/test/java/org/apache/accumulo/miniclusterImpl/MiniAccumuloClusterImplTest.java
index 9007b03b0c..eca6083ab2 100644
---
a/minicluster/src/test/java/org/apache/accumulo/miniclusterImpl/MiniAccumuloClusterImplTest.java
+++
b/minicluster/src/test/java/org/apache/accumulo/miniclusterImpl/MiniAccumuloClusterImplTest.java
@@ -127,6 +127,8 @@ public class MiniAccumuloClusterImplTest {
"root table should exist in " + stats.tableMap.keySet());
assertTrue(stats.tableMap.containsKey(AccumuloTable.METADATA.tableId().canonical()),
"meta table should exist in " + stats.tableMap.keySet());
+
assertTrue(stats.tableMap.containsKey(AccumuloTable.FATE.tableId().canonical()),
+ "fate table should exist in " + stats.tableMap.keySet());
assertTrue(stats.tableMap.containsKey(testTableID),
"our test table should exist in " + stats.tableMap.keySet());
assertNotNull(stats.tServerInfo, "there should be tservers.");