File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
mariadb/src/main/java/org/testcontainers/containers
mysql/src/main/java/org/testcontainers/containers Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ public class MariaDBContainer<SELF extends MariaDBContainer<SELF>> extends JdbcD
2323 private static final String MY_CNF_CONFIG_OVERRIDE_PARAM_NAME = "TC_MY_CNF" ;
2424
2525 public MariaDBContainer () {
26- this (IMAGE + ":" + DEFAULT_TAG );
26+ super (IMAGE + ":" + DEFAULT_TAG );
2727 }
2828
2929 public MariaDBContainer (String dockerImageName ) {
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ public class MySQLContainer<SELF extends MySQLContainer<SELF>> extends JdbcDatab
2626 private static final String MYSQL_ROOT_USER = "root" ;
2727
2828 public MySQLContainer () {
29- this (IMAGE + ":" + DEFAULT_TAG );
29+ super (IMAGE + ":" + DEFAULT_TAG );
3030 }
3131
3232 public MySQLContainer (String dockerImageName ) {
You can’t perform that action at this time.
0 commit comments