for(Versioned<Slop> vs: delivered) {
// check that all the slops are in the stores
// and no new slops have appeared
// and the SloppyStore is now empty
Slop slop = vs.getValue();
assertEquals("Slop remains.", 0, repo.getSlopStore().get(slop.makeKey(), null).size());
assertTrue(bytesEqual(slop.getValue(), repo.getNodeStore(STORE_NAME, slop.getNodeId())
.get(slop.getKey(), null)
.get(0)
.getValue()));
}