This is an automated email from the ASF dual-hosted git repository.

dlmarion pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/accumulo.git


The following commit(s) were added to refs/heads/main by this push:
     new 37c95acaad Removed assertions that fail with 
SimpleSharedMacTestSuiteIT (#5784)
37c95acaad is described below

commit 37c95acaad66043ce55f9544599e70a8cd5a78c1
Author: Dave Marion <[email protected]>
AuthorDate: Thu Aug 7 07:32:35 2025 -0400

    Removed assertions that fail with SimpleSharedMacTestSuiteIT (#5784)
    
    When run with SimpleSharedMacTestSuiteIT there are other
    entries in the metadata table that cause these assertions
    to fail.
---
 .../apache/accumulo/test/functional/TabletsMetadataIT_SimpleSuite.java  | 2 --
 1 file changed, 2 deletions(-)

diff --git 
a/test/src/main/java/org/apache/accumulo/test/functional/TabletsMetadataIT_SimpleSuite.java
 
b/test/src/main/java/org/apache/accumulo/test/functional/TabletsMetadataIT_SimpleSuite.java
index 129d8f8e44..10c1a17348 100644
--- 
a/test/src/main/java/org/apache/accumulo/test/functional/TabletsMetadataIT_SimpleSuite.java
+++ 
b/test/src/main/java/org/apache/accumulo/test/functional/TabletsMetadataIT_SimpleSuite.java
@@ -134,7 +134,6 @@ public class TabletsMetadataIT_SimpleSuite extends 
SharedMiniClusterBase {
       assertTrue(iter.hasNext());
       tm = iter.next();
       assertEquals(SystemTables.METADATA.tableId(), tm.getExtent().tableId());
-      assertFalse(iter.hasNext());
     }
   }
 
@@ -151,7 +150,6 @@ public class TabletsMetadataIT_SimpleSuite extends 
SharedMiniClusterBase {
       assertTrue(iter.hasNext());
       tm = iter.next();
       assertEquals(SystemTables.METADATA.tableId(), tm.getExtent().tableId());
-      assertFalse(iter.hasNext());
       TabletsMetadata tms2 = 
TabletsMetadata.builder(c).forLevel(DataLevel.METADATA)
           .filter(new HasColumnFilter(ColumnType.DIR, false)).build();
       Iterator<TabletMetadata> iter2 = tms2.iterator();

Reply via email to