kevinrr888 commented on code in PR #6037:
URL: https://github.com/apache/accumulo/pull/6037#discussion_r2643732097


##########
test/src/main/java/org/apache/accumulo/test/NewTableConfigurationIT.java:
##########
@@ -534,14 +534,12 @@ public void testConflictsWithDefaults() throws Exception {
        */
       // add an iterator with same priority as the default iterator
       var iterator1 = new IteratorSetting(20, "foo", "foo.bar");
-      var exception = assertThrows(IllegalStateException.class, () -> 
client.tableOperations()
-          .create(table, new 
NewTableConfiguration().attachIterator(iterator1)));
-      assertTrue(exception.getMessage().contains("iterator priority 
conflict"));
+      assertThrows(IllegalStateException.class, () -> 
client.tableOperations().create(table,
+          new NewTableConfiguration().attachIterator(iterator1)));

Review Comment:
   added back checking the message :+1:



-- 
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]

Reply via email to