From d210d791490ffc7d70c970476d3b8a0af128d7af Mon Sep 17 00:00:00 2001 From: M Sazzadul Hoque <7600764+sazzad16@users.noreply.github.com> Date: Sun, 12 Dec 2021 13:53:28 +0600 Subject: [PATCH] Prevent test base classes from testing (#2736) This PR is in response of #2734. SortedSetCommandsTestBase is the only class that missed `abstract`. --- .../jedis/commands/unified/SortedSetCommandsTestBase.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/redis/clients/jedis/commands/unified/SortedSetCommandsTestBase.java b/src/test/java/redis/clients/jedis/commands/unified/SortedSetCommandsTestBase.java index 8f923ddb7a..9a2165376b 100644 --- a/src/test/java/redis/clients/jedis/commands/unified/SortedSetCommandsTestBase.java +++ b/src/test/java/redis/clients/jedis/commands/unified/SortedSetCommandsTestBase.java @@ -29,7 +29,7 @@ import redis.clients.jedis.resps.Tuple; import redis.clients.jedis.util.SafeEncoder; -public class SortedSetCommandsTestBase extends UnifiedJedisCommandsTestBase { +public abstract class SortedSetCommandsTestBase extends UnifiedJedisCommandsTestBase { final byte[] bfoo = { 0x01, 0x02, 0x03, 0x04 }; final byte[] bbar = { 0x05, 0x06, 0x07, 0x08 }; final byte[] bcar = { 0x09, 0x0A, 0x0B, 0x0C };