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
|
// todo - is this really correct? Does the path start w/ the class name
|
||||||
assertEquals(
|
assertEquals(
|
||||||
"Wrong path",
|
"Wrong path",
|
||||||
"org.hibernate.metamodel.source.annotations.entity.EmbeddableBindingTest$User.phone",
|
EmbeddableBindingTest.User.class.getName() + ".phone",
|
||||||
componentBinding.getPathBase()
|
componentBinding.getPathBase()
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
|
@ -86,7 +86,7 @@ public class MapsIdTest extends BaseAnnotationBindingTestCase {
|
||||||
);
|
);
|
||||||
assertEquals(
|
assertEquals(
|
||||||
"Wrong error origin",
|
"Wrong error origin",
|
||||||
"org.hibernate.metamodel.source.annotations.entity.MapsIdTest$Dependent",
|
MapsIdTest.Dependent.class.getName(),
|
||||||
e.getOrigin().getName()
|
e.getOrigin().getName()
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
@ -72,7 +72,7 @@ public class ProxyBindingTest extends BaseAnnotationBindingTestCase {
|
||||||
assertTrue( "Wrong laziness", binding.isLazy() );
|
assertTrue( "Wrong laziness", binding.isLazy() );
|
||||||
assertEquals(
|
assertEquals(
|
||||||
"Wrong proxy interface",
|
"Wrong proxy interface",
|
||||||
"org.hibernate.metamodel.source.annotations.entity.ProxyBindingTest$ProxyInterfaceEntity",
|
ProxyBindingTest.ProxyInterfaceEntity.class.getName(),
|
||||||
binding.getProxyInterfaceType().getValue().getName()
|
binding.getProxyInterfaceType().getValue().getName()
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue