alb3rtobr commented on a change in pull request #6193:
URL: https://github.com/apache/geode/pull/6193#discussion_r607171163
##########
File path:
geode-gfsh/src/integrationTest/java/org/apache/geode/management/internal/cli/GfshParserConverterTest.java
##########
@@ -103,7 +103,7 @@ public void testJsonKey() {
public void testUnspecifiedValueToStringArray() {
String command = "change loglevel --loglevel=finer --groups=group1,group2";
ParseResult result = parser.parse(command);
- String[] memberIdValue = (String[]) result.getArguments()[0];
Review comment:
Due to the change in the order of parameters in `ChangeLogLevelCommand`,
the memberId is returned in second position by the parser, so I had to modify
the array index from 0 to 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.
For queries about this service, please contact Infrastructure at:
[email protected]