FutureRemove futureRemove = node.getDataManager().removeUnblocked(parameters2);
futureRemove.awaitUninterruptibly();
// should have been not changed
futureGet = node.getDataManager().getUnblocked(parameters2);
futureGet.awaitUninterruptibly();
assertEquals(data1.getTestString(), ((H2HTestData) futureGet.getData().object()).getTestString());
// try to remove with wrong protection keys
Parameters parameters3 = new Parameters().setLocationKey(locationKey).setDomainKey(domainKey)
.setContentKey(contentKey).setProtectionKeys(protectionKey2);