HHH-7028 Fixing test failures

This commit is contained in:
Hardy Ferentschik 2012-02-07 12:46:11 -06:00
parent 383a130a9c
commit b27462fe5f
3 changed files with 3 additions and 3 deletions

View File

@ -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()
);

View File

@ -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()
);
}

View File

@ -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()
);
}