Skip to content

Commit

Permalink
HHH-17763 Run test only on H2
Browse files Browse the repository at this point in the history
  • Loading branch information
mbladel committed Mar 8, 2024
1 parent feac98e commit 971d673
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
import org.hibernate.boot.registry.internal.StandardServiceRegistryImpl;
import org.hibernate.cfg.Environment;
import org.hibernate.cfg.SchemaToolingSettings;
import org.hibernate.dialect.H2Dialect;
import org.hibernate.internal.util.PropertiesHelper;
import org.hibernate.mapping.Table;
import org.hibernate.tool.schema.internal.ExceptionHandlerHaltImpl;
Expand All @@ -28,6 +29,7 @@

import org.hibernate.testing.ServiceRegistryBuilder;
import org.hibernate.testing.orm.junit.Jira;
import org.hibernate.testing.orm.junit.RequiresDialect;
import org.hibernate.testing.transaction.TransactionUtil;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.TestInstance;
Expand All @@ -44,6 +46,7 @@
*/
@TestInstance( TestInstance.Lifecycle.PER_CLASS )
@Jira( "https://hibernate.atlassian.net/browse/HHH-17763" )
@RequiresDialect(H2Dialect.class)
public class SchemaFilterProviderTest {
@Test
public void testValidationDefaultProvider() {
Expand Down

0 comments on commit 971d673

Please sign in to comment.