Skip to content

Commit 54382a3

Browse files
committed
fixes KeywordStartIT
1 parent e1a92f5 commit 54382a3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/src/main/java/org/apache/accumulo/test/start/KeywordStartIT.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -179,9 +179,9 @@ public void testExpectedClasses() {
179179
expectSet.add(new CommandInfo(UsageGroup.OTHER, "zoo-prop-editor", ZooPropEditor.class));
180180
expectSet.add(new CommandInfo(UsageGroup.OTHER, "zoo-zap", ZooZap.class));
181181
expectSet.add(new CommandInfo(UsageGroup.PROCESS, "zookeeper", ZooKeeperMain.class));
182-
expectSet.add(new CommandInfo(UsageGroup.OTHER, "cancel-compaction", CancelCompaction.class));
183-
expectSet.add(new CommandInfo(UsageGroup.OTHER, "list-compactors", ListCompactors.class));
184-
expectSet.add(new CommandInfo(UsageGroup.OTHER, "list-compactions", ListCompactions.class));
182+
expectSet.add(new CommandInfo(UsageGroup.COMPACTION, "cancel", CancelCompaction.class));
183+
expectSet.add(new CommandInfo(UsageGroup.PROCESS, "list-compactors", ListCompactors.class));
184+
expectSet.add(new CommandInfo(UsageGroup.COMPACTION, "list", ListCompactions.class));
185185

186186
Map<UsageGroup,Map<String,KeywordExecutable>> actualExecutables =
187187
new TreeMap<>(getKeywordExecutables());

0 commit comments

Comments
 (0)