File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
modules/jdbc-test/src/main/java/org/testcontainers/jdbc Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 1717import java .util .EnumSet ;
1818
1919import static org .assertj .core .api .Assertions .assertThat ;
20- import static org .junit . Assume . assumeFalse ;
20+ import static org .assertj . core . api . Assumptions . assumeThat ;
2121
2222@ ParameterizedClass
2323@ MethodSource ("data" )
@@ -207,7 +207,7 @@ private HikariDataSource verifyCharacterSet(String jdbcUrl) throws SQLException
207207 }
208208
209209 private void performTestForCustomIniFile (HikariDataSource dataSource ) throws SQLException {
210- assumeFalse (SystemUtils .IS_OS_WINDOWS );
210+ assumeThat (SystemUtils .IS_OS_WINDOWS ). isFalse ( );
211211 Statement statement = dataSource .getConnection ().createStatement ();
212212 statement .execute ("SELECT @@GLOBAL.innodb_max_undo_log_size" );
213213 ResultSet resultSet = statement .getResultSet ();
You can’t perform that action at this time.
0 commit comments