newTableFeed.setGroups("newgroups");
Assert.assertFalse(UpdateHelper.shouldUpdate(oldTableFeed, newTableFeed, cluster));
newTableFeed.setFrequency(Frequency.fromString("days(1)"));
Assert.assertTrue(UpdateHelper.shouldUpdate(oldTableFeed, newTableFeed, cluster));
final CatalogTable table = new CatalogTable();
table.setUri("catalog:default:clicks-blah#ds=${YEAR}-${MONTH}-${DAY}-${HOUR}");
newTableFeed.setTable(table);
Assert.assertTrue(UpdateHelper.shouldUpdate(oldTableFeed, newTableFeed, cluster));
inputStream = getClass().getResourceAsStream("/config/process/process-table.xml");
Process oldProcess = (Process) EntityType.PROCESS.getUnmarshaller().unmarshal(inputStream);