// Also create some content in another repository with two tables
//
RepositoryModelImpl repositoryModel = new RepositoryModelImpl(lilyProxy.getLilyServerProxy().getZooKeeper());
String repositoryName = "otherrepo";
repositoryModel.create(repositoryName);
assertTrue(repositoryModel.waitUntilRepositoryInState(repositoryName, RepositoryLifecycleState.ACTIVE, 60000L));
repositoryModel.close();
LRepository repository2 = repoMgr.getRepository(repositoryName);
repository2.getTableManager().createTable("foobar");
LTable table2 = repository2.getTable("foobar");