HHH-10912 Only run with default audit strategy

This commit is contained in:
Chris Cranford 2021-11-25 18:59:40 -05:00
parent 5ccaba123b
commit 267a1cdb46
1 changed files with 3 additions and 0 deletions

View File

@ -12,6 +12,7 @@ import java.util.Map;
import org.hibernate.Session;
import org.hibernate.cfg.AvailableSettings;
import org.hibernate.envers.strategy.internal.DefaultAuditStrategy;
import org.hibernate.orm.test.envers.BaseEnversFunctionalTestCase;
import org.hibernate.orm.test.envers.Priority;
import org.hibernate.orm.test.envers.entities.customtype.UnspecifiedEnumTypeEntity;
@ -21,11 +22,13 @@ import org.junit.Assert;
import org.junit.Test;
import org.hibernate.testing.TestForIssue;
import org.hibernate.testing.envers.RequiresAuditStrategy;
/**
* @author Lukasz Antoniak (lukasz dot antoniak at gmail dot com)
*/
@TestForIssue(jiraKey = "HHH-7780")
@RequiresAuditStrategy(DefaultAuditStrategy.class)
public class UnspecifiedEnumTypeTest extends BaseEnversFunctionalTestCase {
private Long id = null;