metaGraphTx.commit();
// Make sure the indexes got copied.
DendriteGraphTx dstTx = dstGraph.newTransaction();
TitanType dstType = dstTx.getType("name");
Assert.assertNotNull(dstType);
Assert.assertTrue(dstType instanceof TitanKey);
TitanKey dstKey = (TitanKey) dstType;
Assert.assertEquals(dstKey.getName(), "name");