Skip to content

Commit dd1df26

Browse files
committed
fix
1 parent 9866dab commit dd1df26

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

hibernate-reactive-core/src/test/java/org/hibernate/reactive/schema/SchemaUpdateOracleTestBase.java

+4-2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010

1111
import org.hibernate.cfg.Configuration;
1212
import org.hibernate.reactive.BaseReactiveTest;
13+
import org.hibernate.reactive.annotations.EnabledFor;
14+
import org.hibernate.reactive.containers.DatabaseConfiguration;
1315
import org.hibernate.reactive.provider.Settings;
1416

1517
import org.junit.jupiter.api.AfterEach;
@@ -33,13 +35,13 @@
3335
import jakarta.persistence.UniqueConstraint;
3436

3537
import static java.util.concurrent.TimeUnit.MINUTES;
38+
import static org.hibernate.reactive.containers.DatabaseConfiguration.DBType.ORACLE;
3639
import static org.hibernate.tool.schema.JdbcMetadaAccessStrategy.GROUPED;
3740
import static org.hibernate.tool.schema.JdbcMetadaAccessStrategy.INDIVIDUALLY;
3841
import static org.junit.jupiter.api.Assertions.assertEquals;
3942
import static org.junit.jupiter.api.Assertions.assertNotNull;
4043

41-
@Disabled
42-
//@EnabledFor(ORACLE)
44+
@EnabledFor(ORACLE)
4345
public abstract class SchemaUpdateOracleTestBase extends BaseReactiveTest {
4446

4547
@Timeout(value = 10, timeUnit = MINUTES)

0 commit comments

Comments
 (0)