// create a participant with the same id
boolean created2 = createParticipant(participantId, accessor, MODIFIER, 2);
Assert.assertFalse(created2); // should fail since participant exists
// remove a required property
helixAccessor.removeProperty(helixAccessor.keyBuilder().messages(participantId.stringify()));
// try again, should work this time
created2 = createParticipant(participantId, accessor, MODIFIER, 2);
Assert.assertTrue(created2);