diff --git a/src/test/java/redis/clients/jedis/commands/jedis/ControlCommandsTest.java b/src/test/java/redis/clients/jedis/commands/jedis/ControlCommandsTest.java index 834a8a7bd8..d79eb2086f 100644 --- a/src/test/java/redis/clients/jedis/commands/jedis/ControlCommandsTest.java +++ b/src/test/java/redis/clients/jedis/commands/jedis/ControlCommandsTest.java @@ -21,7 +21,6 @@ import java.util.concurrent.Future; import java.util.concurrent.TimeUnit; -import com.google.gson.annotations.Since; import org.hamcrest.MatcherAssert; import org.hamcrest.Matchers; import org.junit.Test; @@ -504,10 +503,10 @@ public void commandGetKeys() { @Test - public void command() { + public void commandNoArgs() { Map infos = jedis.command(); - assertThat(infos.size(),greaterThan(0)); + assertThat(infos.size(), greaterThan(0)); CommandInfo getInfo = infos.get("get"); assertEquals(2, getInfo.getArity());