chro.applyUpdates();
assertEquals("t1v1", chro.getAttribute("prop1", true).get().toString());
// now change the default
UpdatableSchema uschema1 = schema1.edit();
uschema1.setAttributeDefault(1, "t1v2");
uschema1.applyUpdates();
// expect that the attribute value has changed because t1v1 above was not set, being the default
Chronicle c = db.getChronicle("bt.schema1achro2", true);
assertEquals("t1v1", c.getAttribute("prop1", true).get().toString());
} catch (Exception e) {
fail(e.getMessage());