LdapPrincipal principal = new LdapPrincipal( getService().getSchemaManager(), userDn, AuthenticationLevel.SIMPLE );
CoreSession akarasuluSession = getService().getSession( principal );
try
{
akarasuluSession.modify(
new Dn( "uid=admin,ou=system" ), mods );
fail( "User 'uid=admin,ou=system' should not be able to modify attributes on admin" );
}
catch ( Exception e )
{