X-Git-Url: http://wamblee.org/gitweb/?a=blobdiff_plain;f=security%2Fjpatest%2Fsrc%2Ftest%2Fjava%2Forg%2Fwamblee%2Fsecurity%2Fauthentication%2Fjpa%2FJpaUserSetTest.java;h=d981f2b0fe4b03c6a0ab3aae9d22541fb979acc3;hb=9ceca02f8774188df9159b703dd38a31783ed956;hp=f5b5fa10b43c6385ae3d742bbe7ac05b23c03880;hpb=f832de172c381de15d4e95e4b4f77c834a2457df;p=utils diff --git a/security/jpatest/src/test/java/org/wamblee/security/authentication/jpa/JpaUserSetTest.java b/security/jpatest/src/test/java/org/wamblee/security/authentication/jpa/JpaUserSetTest.java index f5b5fa10..d981f2b0 100644 --- a/security/jpatest/src/test/java/org/wamblee/security/authentication/jpa/JpaUserSetTest.java +++ b/security/jpatest/src/test/java/org/wamblee/security/authentication/jpa/JpaUserSetTest.java @@ -96,8 +96,8 @@ public class JpaUserSetTest extends InMemoryUserSetTest { private GroupSet createGroupSetImpl() { TransactionProxyFactory factory = new TransactionProxyFactory( jpaTester.getJpaBuilder(), GroupSet.class); - GroupSet groupset = new JpaGroupSet(factory.getTransactionScopedEntityManager()); - GroupSet proxy = factory.getProxy(groupset); + GroupSet groups = new JpaGroupSet(factory.getTransactionScopedEntityManager()); + GroupSet proxy = factory.getProxy(groups); return proxy; }