File tree Expand file tree Collapse file tree 1 file changed +0
-5
lines changed
modules/mysql/src/test/java/org/testcontainers/junit/mysql Expand file tree Collapse file tree 1 file changed +0
-5
lines changed Original file line number Diff line number Diff line change 11package org .testcontainers .junit .mysql ;
22
3- import org .apache .commons .lang3 .SystemUtils ;
43import org .junit .Test ;
54import org .slf4j .Logger ;
65import org .slf4j .LoggerFactory ;
2120
2221import static org .assertj .core .api .Assertions .assertThat ;
2322import static org .assertj .core .api .Assertions .fail ;
24- import static org .junit .Assume .assumeFalse ;
2523
2624public class SimpleMySQLTest extends AbstractContainerDatabaseTest {
2725
@@ -48,7 +46,6 @@ public class SimpleMySQLTest extends AbstractContainerDatabaseTest {
4846 public void testSimple () throws SQLException {
4947 try (
5048 MySQLContainer <?> mysql = new MySQLContainer <>(MySQLTestImages .MYSQL_57_IMAGE )
51- .withConfigurationOverride ("somepath/mysql_conf_override" )
5249 .withLogConsumer (new Slf4jLogConsumer (logger ))
5350 ) {
5451 mysql .start ();
@@ -81,8 +78,6 @@ public void testSpecificVersion() throws SQLException {
8178
8279 @ Test
8380 public void testMySQLWithCustomIniFile () throws SQLException {
84- assumeFalse (SystemUtils .IS_OS_WINDOWS );
85-
8681 try (
8782 MySQLContainer <?> mysqlCustomConfig = new MySQLContainer <>(MySQLTestImages .MYSQL_56_IMAGE )
8883 .withConfigurationOverride ("somepath/mysql_conf_override" )
You can’t perform that action at this time.
0 commit comments