ddanielr commented on code in PR #5925:
URL: https://github.com/apache/accumulo/pull/5925#discussion_r2373345481
##########
test/src/main/java/org/apache/accumulo/test/shell/ShellServerIT.java:
##########
@@ -2490,7 +2490,7 @@ public void resourceGroups() throws AccumuloException,
AccumuloSecurityException
assertEquals(1, ops.list().size());
assertEquals(ResourceGroupId.DEFAULT, ops.list().iterator().next());
- ts.exec("createresourcegroup " + badRG, false, "contains invalid
characters");
+ ts.exec("createresourcegroup " + badRG, false, "Group name 'test-RG' is
invalid");
Review Comment:
Is there a reason to hard code the group name vs just use the variable?
```suggestion
ts.exec("createresourcegroup " + badRG, false, "Group name '" + badRG
+"' is invalid");
```
--
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]