Version v = vMgr.checkpoint(path); // 1.0
n.setProperty("prop", "b");
child.setProperty("prop", "b");
superuser.save();
vMgr.checkpoint(path); // 1.1
vMgr.restore(v, true);
assertEquals("Property not restored", "a", n.getProperty("prop").getString());
assertEquals("Property not restored", "a", child.getProperty("prop").getString());
assertFalse("Restored node must not have jcr:frozenPrimaryType property",
child.hasProperty(JcrConstants.JCR_FROZENPRIMARYTYPE));
}