HHH-7850 minor test package changes

This commit is contained in:
Scott Marlow 2012-12-11 16:31:14 -05:00
parent 58978a486f
commit d26730fb3f
3 changed files with 3 additions and 3 deletions

View File

@ -30,7 +30,7 @@ public class InterceptFieldClassFileTransformerTest {
@Before @Before
public void setup() { public void setup() {
entities.add( "org.hibernate.ejb.test.instrument.Simple" ); entities.add( "org.hibernate.jpa.test.instrument.Simple" );
// use custom class loader which enhances the class // use custom class loader which enhances the class
InstrumentedClassLoader cl = new InstrumentedClassLoader( Thread.currentThread().getContextClassLoader() ); InstrumentedClassLoader cl = new InstrumentedClassLoader( Thread.currentThread().getContextClassLoader() );
cl.setEntities( entities ); cl.setEntities( entities );

View File

@ -3,7 +3,7 @@ package org.hibernate.jpa.test.instrument;
import java.util.Collection; import java.util.Collection;
import org.hibernate.ejb.instrument.InterceptFieldClassFileTransformer; import org.hibernate.jpa.internal.instrument.InterceptFieldClassFileTransformer;
/** /**

View File

@ -1,4 +1,4 @@
package org.hibernate.ejb.test.instrument; package org.hibernate.jpa.test.instrument;
/** /**
* A simple entity relation used by {@link Simple} to ensure that enhanced * A simple entity relation used by {@link Simple} to ensure that enhanced