Skip to content

Commit 7c27d09

Browse files
committed
HHH-19688 - Moved test into the correct package (was located in package 'x')
Signed-off-by: Jan Schatteman <jschatte@redhat.com>
1 parent 80756e1 commit 7c27d09

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

hibernate-core/src/test/java/x/IdClassSingleOneToOneTest.java renamed to hibernate-core/src/test/java/org/hibernate/orm/test/idclass/IdClassSingleOneToOneTest.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,15 @@
22
* SPDX-License-Identifier: Apache-2.0
33
* Copyright Red Hat Inc. and Hibernate Authors
44
*/
5-
package x;
5+
package org.hibernate.orm.test.idclass;
66

77
import jakarta.persistence.Entity;
88
import jakarta.persistence.FetchType;
99
import jakarta.persistence.Id;
1010
import jakarta.persistence.IdClass;
1111
import jakarta.persistence.OneToOne;
1212
import org.hibernate.testing.orm.junit.DomainModel;
13+
import org.hibernate.testing.orm.junit.Jira;
1314
import org.hibernate.testing.orm.junit.SessionFactory;
1415
import org.hibernate.testing.orm.junit.SessionFactoryScope;
1516
import org.junit.jupiter.api.Test;
@@ -25,6 +26,7 @@
2526
IdClassSingleOneToOneTest.EntityB.class,
2627
} )
2728
@SessionFactory
29+
@Jira(value = "https://hibernate.atlassian.net/browse/HHH-19688")
2830
public class IdClassSingleOneToOneTest {
2931

3032
@Test

0 commit comments

Comments
 (0)