Skip to content

Commit d210d79

Browse files
authored
Prevent test base classes from testing (#2736)
This PR is in response of #2734. SortedSetCommandsTestBase is the only class that missed `abstract`.
1 parent 896a827 commit d210d79

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/redis/clients/jedis/commands/unified/SortedSetCommandsTestBase.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
import redis.clients.jedis.resps.Tuple;
3030
import redis.clients.jedis.util.SafeEncoder;
3131

32-
public class SortedSetCommandsTestBase extends UnifiedJedisCommandsTestBase {
32+
public abstract class SortedSetCommandsTestBase extends UnifiedJedisCommandsTestBase {
3333
final byte[] bfoo = { 0x01, 0x02, 0x03, 0x04 };
3434
final byte[] bbar = { 0x05, 0x06, 0x07, 0x08 };
3535
final byte[] bcar = { 0x09, 0x0A, 0x0B, 0x0C };

0 commit comments

Comments
 (0)