Skip to content

Commit

Permalink
[hibernate#1857] Disable failing test for MySQL and MariaDB
Browse files Browse the repository at this point in the history
  • Loading branch information
DavideD committed Apr 3, 2024
1 parent 8f61d81 commit c461f9e
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@

import static java.util.concurrent.TimeUnit.MINUTES;
import static org.hibernate.reactive.containers.DatabaseConfiguration.DBType.DB2;
import static org.hibernate.reactive.containers.DatabaseConfiguration.DBType.MARIA;
import static org.hibernate.reactive.containers.DatabaseConfiguration.DBType.MYSQL;
import static org.hibernate.reactive.containers.DatabaseConfiguration.DBType.ORACLE;
import static org.hibernate.reactive.containers.DatabaseConfiguration.DBType.SQLSERVER;
import static org.junit.jupiter.api.Assertions.assertEquals;
Expand All @@ -57,6 +59,7 @@ protected Configuration constructConfiguration() {
return configuration;
}

@DisabledFor({MYSQL, MARIA})
@Test
public void testWithIdentity(VertxTestContext context) {
final GeneratedWithIdentity davide = new GeneratedWithIdentity( "Davide", "D'Alto" );
Expand Down

0 comments on commit c461f9e

Please sign in to comment.