HHH-18384 Removing @FailureExpected annotation from test case

This commit is contained in:
Čedomir Igaly 2024-11-17 12:45:23 +01:00 committed by Marco Belladelli
parent e53ff58381
commit 7cc928dbf4
1 changed files with 0 additions and 2 deletions

View File

@ -13,7 +13,6 @@ import org.hibernate.mapping.Value;
import org.hibernate.testing.orm.junit.DomainModel;
import org.hibernate.testing.orm.junit.DomainModelScope;
import org.hibernate.testing.orm.junit.FailureExpected;
import org.hibernate.testing.orm.junit.ServiceRegistry;
import org.hibernate.testing.orm.junit.Setting;
import org.junit.jupiter.api.Test;
@ -40,7 +39,6 @@ public class JoinColumnAndFormulaTests {
@Test
@ServiceRegistry( settings = @Setting( name= MappingSettings.TRANSFORM_HBM_XML, value = "true" ) )
@DomainModel( xmlMappings = "mappings/models/hbm/joinformula/many-to-one-join-column-and-formula.xml" )
@FailureExpected( reason = "@JoinColumnsOrFormulas broken", jiraKey = "https://hibernate.atlassian.net/browse/HHH-18384" )
void testHbmXmlTransformed(DomainModelScope domainModelScope) {
verifyMapping( domainModelScope );
}