Skip to content
Snippets Groups Projects
Commit cd40bcdc authored by srosse's avatar srosse
Browse files

no-jira: fix unit tests after copy/paste error

parent c2d53438
No related branches found
No related tags found
No related merge requests found
......@@ -1128,7 +1128,7 @@ public class BaseSecurityManager implements BaseSecurity {
if(strict) return loadIdentityByKey(identityKey);
StringBuilder sb = new StringBuilder();
sb.append("select ident from ").append(IdentityShort.class.getName()).append(" as ident where ident.key=:identityKey");
sb.append("select ident from ").append(Identity.class.getName()).append(" as ident where ident.key=:identityKey");
List<Identity> identities = dbInstance.getCurrentEntityManager()
.createQuery(sb.toString(), Identity.class)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment