Skip to content

Commit

Permalink
remove duplicated test
Browse files Browse the repository at this point in the history
  • Loading branch information
ggivo committed Nov 26, 2024
1 parent c3da29d commit 61bef0c
Showing 1 changed file with 0 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -575,21 +575,6 @@ public void commandInfoAcl() {
});
}

@Test
public void commandInfoWithSubcommands() {
Map<String, CommandInfo> infos = jedis.commandInfo("ACL");

CommandInfo aclInfo = infos.get("acl");
assertEquals(-2, aclInfo.getArity());
assertEquals(0, aclInfo.getFlags().size());
assertEquals(0, aclInfo.getFirstKey());
assertEquals(0, aclInfo.getLastKey());
assertEquals(0, aclInfo.getStep());
assertEquals(1, aclInfo.getAclCategories().size());
assertEquals(0, aclInfo.getTips().size());
assertFalse(aclInfo.getSubcommands().isEmpty());
}

@Test
@SinceRedisVersion("7.0.0")
public void commandList() {
Expand Down

0 comments on commit 61bef0c

Please sign in to comment.