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 @@ -19,7 +19,7 @@ public class MariaDBContainer<SELF extends MariaDBContainer<SELF>> extends JdbcD
1919 private static final String MY_CNF_CONFIG_OVERRIDE_PARAM_NAME = "TC_MY_CNF" ;
2020
2121 public MariaDBContainer () {
22- super (IMAGE + ":" + DEFAULT_TAG );
22+ this (IMAGE + ":" + DEFAULT_TAG );
2323 }
2424
2525 public MariaDBContainer (String dockerImageName ) {
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ public class MySQLContainer<SELF extends MySQLContainer<SELF>> extends JdbcDatab
2222 private static final String MYSQL_ROOT_USER = "root" ;
2323
2424 public MySQLContainer () {
25- super (IMAGE + ":" + DEFAULT_TAG );
25+ this (IMAGE + ":" + DEFAULT_TAG );
2626 }
2727
2828 public MySQLContainer (String dockerImageName ) {
You can’t perform that action at this time.
0 commit comments