WIP
[demos/kafka/chat] / src / test / java / de / juplo / kafka / chat / backend / persistence / AbstractInMemoryStorageIT.java
index 832ebd9..a68445b 100644 (file)
@@ -24,9 +24,11 @@ public abstract class AbstractInMemoryStorageIT extends AbstractStorageStrategyI
       InMemoryChatHomeService chatHomeService = new InMemoryChatHomeService(
           1,
           new int[] { 0 },
+          id -> 0,
           getStorageStrategy().read());
 
       InMemoryChatRoomFactory chatRoomFactory = new InMemoryChatRoomFactory(
+          chatHomeService,
           chatRoomId -> 0,
           clock,
           8);