ddanielr commented on code in PR #3177:
URL: https://github.com/apache/accumulo/pull/3177#discussion_r1092351740
##########
test/src/main/java/org/apache/accumulo/test/TableOperationsIT.java:
##########
@@ -205,6 +205,17 @@ public void createTableWithTableNameLengthLimit()
assertFalse(tableOps.exists(t2));
}
+ @Test
+ public void createTableWithBadProperties()
+ throws AccumuloException, AccumuloSecurityException,
TableExistsException {
+ TableOperations tableOps = accumuloClient.tableOperations();
+ String t0 = StringUtils.repeat('a', MAX_TABLE_NAME_LEN - 1);
Review Comment:
Ok, I changed it and I'm running the `TableOperationsIT` now. Once it's done
I'll push the commit up.
--
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]