Skip to content

Commit

Permalink
Prevent test base classes from testing (#2736)
Browse files Browse the repository at this point in the history
This PR is in response of #2734. SortedSetCommandsTestBase is the only class that missed `abstract`.
  • Loading branch information
sazzad16 authored Dec 12, 2021
1 parent 896a827 commit d210d79
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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 };
Expand Down

0 comments on commit d210d79

Please sign in to comment.