// tag after the addition before rename
Tag t0 = getService().getChangeLog().tag();
assertPresent( sysRoot, "ou=oldname,ou=system" );
// rename the test entry and test that the rename occurred
sysRoot.rename( "ou=oldname,ou=system", "ou=newname" );
assertNotPresent( sysRoot, "ou=oldname,ou=system" );
assertPresent( sysRoot, "ou=newname,ou=system" );
// now revert and assert that the rename was reversed
getService().revert( t0.getRevision() );