//make sure that our keyspace definitions do not match
assertNotEquals(NewKeyspaceDefinition, cm.hydrateLatestKeyspaceDefinitionFromCassandra(NewKeyspaceDefinition.getName()));
assertNotEquals(NewKeyspaceDefinition, om.getKeyspaceDefinition_ONLY_FOR_TESTING());
//run the migration
cm.runMigration(NewKeyspaceDefinition, true);
//make sure that the object mapper has the new keyspace definition
CKeyspaceDefinition updatedKeyspaceDefinition = om.getKeyspaceDefinition_ONLY_FOR_TESTING();
assertEquals(NewKeyspaceDefinition, updatedKeyspaceDefinition);