File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed
src/main/java/com/redislabs/testcontainers Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 1- version =1.1.1 -SNAPSHOT
1+ version =1.1.2 -SNAPSHOT
22testcontainers_version =1.15.3
33lombok_version =1.18.20
44junit_version =5.7.1
Original file line number Diff line number Diff line change 22
33import org .testcontainers .containers .FixedHostPortGenericContainer ;
44import org .testcontainers .containers .wait .strategy .Wait ;
5+ import org .testcontainers .shaded .org .apache .commons .lang .ClassUtils ;
56import org .testcontainers .utility .MountableFile ;
67
78public class RedisClusterContainer extends FixedHostPortGenericContainer <RedisClusterContainer > implements RedisContainer {
@@ -96,4 +97,9 @@ public RedisClusterContainer withInitialPort(int port) {
9697 return update ();
9798 }
9899
100+ @ Override
101+ public String toString () {
102+ return ClassUtils .getShortClassName (getClass ());
103+ }
104+
99105}
You can’t perform that action at this time.
0 commit comments