HHH-7028 Fixing test failures
This commit is contained in:
parent
383a130a9c
commit
b27462fe5f
|
@ -80,7 +80,7 @@ public class EmbeddableBindingTest extends BaseAnnotationBindingTestCase {
|
|||
// todo - is this really correct? Does the path start w/ the class name
|
||||
assertEquals(
|
||||
"Wrong path",
|
||||
"org.hibernate.metamodel.source.annotations.entity.EmbeddableBindingTest$User.phone",
|
||||
EmbeddableBindingTest.User.class.getName() + ".phone",
|
||||
componentBinding.getPathBase()
|
||||
);
|
||||
|
||||
|
|
|
@ -86,7 +86,7 @@ public class MapsIdTest extends BaseAnnotationBindingTestCase {
|
|||
);
|
||||
assertEquals(
|
||||
"Wrong error origin",
|
||||
"org.hibernate.metamodel.source.annotations.entity.MapsIdTest$Dependent",
|
||||
MapsIdTest.Dependent.class.getName(),
|
||||
e.getOrigin().getName()
|
||||
);
|
||||
}
|
||||
|
|
|
@ -72,7 +72,7 @@ public class ProxyBindingTest extends BaseAnnotationBindingTestCase {
|
|||
assertTrue( "Wrong laziness", binding.isLazy() );
|
||||
assertEquals(
|
||||
"Wrong proxy interface",
|
||||
"org.hibernate.metamodel.source.annotations.entity.ProxyBindingTest$ProxyInterfaceEntity",
|
||||
ProxyBindingTest.ProxyInterfaceEntity.class.getName(),
|
||||
binding.getProxyInterfaceType().getValue().getName()
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue