HHH-4848 - Derived identities: Derived entities using @IdClass and mapping a @XToOne are not supported

git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18696 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
Steve Ebersole 2010-02-04 20:07:08 +00:00
parent b3b9482292
commit b84e1fc5fc
1 changed files with 3 additions and 3 deletions

View File

@ -43,6 +43,7 @@ import org.hibernate.jdbc.Work;
import org.hibernate.junit.FailureExpected;
import org.hibernate.junit.RequiresDialect;
import org.hibernate.junit.SkipForDialect;
import org.hibernate.junit.SkipLog;
import org.hibernate.tool.hbm2ddl.SchemaExport;
import org.hibernate.util.StringHelper;
@ -136,7 +137,7 @@ public abstract class HibernateTestCase extends TestCase {
builder.append( " (" )
.append( failureExpected.jiraKey() )
.append( ")" );
reportSkip( "Failed with: " + t.toString(), builder.toString() );
SkipLog.LOG.warn( builder.toString(), t );
}
else {
throw t;
@ -340,8 +341,7 @@ public abstract class HibernateTestCase extends TestCase {
builder.append( testDescription );
builder.append( " : " );
builder.append( reason );
log.warn( builder.toString() );
SkipLog.LOG.warn( builder.toString() );
}
public class RollbackWork implements Work {