// See if the client has received the msg
msg = broker.receive();
assertTrue(msg instanceof DeleteMsg,
"The received replication message is not a MODIFY DN msg : " + msg);
DeleteMsg delMsg = (DeleteMsg) msg;
delMsg.createOperation(connection);
assertTrue(DN.decode(delMsg.getDn()).compareTo(DN
.decode("uid= new person,ou=People," + TEST_ROOT_DN_STRING)) == 0,
"The received DELETE message is not for the excepted DN : " + delMsg);
/*