Skip to content

Commit

Permalink
test: shortened test class names (hsqldb limitation)
Browse files Browse the repository at this point in the history
  • Loading branch information
jruaux committed May 25, 2024
1 parent b489961 commit 5bf48f0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import com.redis.testcontainers.RedisStackContainer;

@EnabledIfEnvironmentVariable(named = RedisEnterpriseServer.ENV_HOST, matches = ".*")
class REServerStackReplicationTests extends ReplicationTests {
class RESrvStackTests extends ReplicationTests {

private static final RedisEnterpriseServer source = RedisContainerFactory.enterpriseServer();
private static final RedisStackContainer target = RedisContainerFactory.stack();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import com.redis.testcontainers.RedisStackContainer;

@EnabledOnOs(OS.LINUX)
class REContainerStackReplicationTests extends ReplicationTests {
class REStackTests extends ReplicationTests {

private static final RedisEnterpriseContainer source = RedisContainerFactory.enterprise();
private static final RedisStackContainer target = RedisContainerFactory.stack();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import com.redis.testcontainers.RedisStackContainer;

@EnabledIfEnvironmentVariable(named = RedisEnterpriseServer.ENV_HOST, matches = ".*")
public class StackREServerReplicationTests extends ReplicationTests {
public class StackRESrvTests extends ReplicationTests {

private static final RedisStackContainer source = RedisContainerFactory.stack();
private static final RedisEnterpriseServer target = RedisContainerFactory.enterpriseServer();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import com.redis.testcontainers.RedisStackContainer;

@EnabledOnOs(OS.LINUX)
class StackREContainerReplicationTests extends ReplicationTests {
class StackRETests extends ReplicationTests {

private static final RedisStackContainer source = RedisContainerFactory.stack();
private static final RedisEnterpriseContainer target = RedisContainerFactory.enterprise();
Expand Down

0 comments on commit 5bf48f0

Please sign in to comment.