Skip to content

Commit

Permalink
Fix regression introduced in #2473 (missing this constructor call) (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
bsideup committed Apr 20, 2020
1 parent f631023 commit d604f3e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -23,7 +23,7 @@ public class MariaDBContainer<SELF extends MariaDBContainer<SELF>> extends JdbcD
private static final String MY_CNF_CONFIG_OVERRIDE_PARAM_NAME = "TC_MY_CNF";

public MariaDBContainer() {
super(IMAGE + ":" + DEFAULT_TAG);
this(IMAGE + ":" + DEFAULT_TAG);
}

public MariaDBContainer(String dockerImageName) {
Expand Down
Expand Up @@ -26,7 +26,7 @@ public class MySQLContainer<SELF extends MySQLContainer<SELF>> extends JdbcDatab
private static final String MYSQL_ROOT_USER = "root";

public MySQLContainer() {
super(IMAGE + ":" + DEFAULT_TAG);
this(IMAGE + ":" + DEFAULT_TAG);
}

public MySQLContainer(String dockerImageName) {
Expand Down

0 comments on commit d604f3e

Please sign in to comment.