Map<String, String> otherFacts = new HashMap<String, String>();
otherFacts.put("key", "val");
otherConsumer.setFacts(otherFacts);
otherConsumer = consumerCurator.create(otherConsumer);
Owner otherOwner = new Owner("test-owner1", "Test Owner1");
otherOwner = ownerCurator.create(otherOwner);
Consumer otherOwnCons = new Consumer("testConsumer3", "testUser3", otherOwner, ct);
Map<String, String> otherOwnFacts = new HashMap<String, String>();
otherOwnFacts.put("key", "val");
otherOwnCons.setFacts(otherOwnFacts);