FIX: MysqlGenerateMigrationTest now clears pendingDrops System-Property

This commit is contained in:
Jonas Pöhler
2021-11-26 15:57:03 +01:00
parent 7b5fa99faf
commit a5b4547592
@@ -6,6 +6,7 @@ import io.ebean.annotation.Platform;
import io.ebean.config.DatabaseConfig;
import io.ebean.config.PlatformConfig;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
@@ -22,9 +23,13 @@ import static org.assertj.core.api.Assertions.assertThat;
*
* @author Jonas Pöhler, FOCONIS AG
*/
@Disabled("build success depends on test order")
public class MysqlGenerateMigrationTest {
@AfterEach
public void resetPendingDropsProperty() {
System.clearProperty("ddl.migration.pendingDropsFor");
}
@Test
public void testMysqlStoredProcedures() throws Exception {
DefaultDbMigration migration = new DefaultDbMigration();