diff --git a/src/test/java/org/peergos/BitswapTest.java b/src/test/java/org/peergos/BitswapTest.java index 32489d5b..25e90b70 100644 --- a/src/test/java/org/peergos/BitswapTest.java +++ b/src/test/java/org/peergos/BitswapTest.java @@ -49,11 +49,11 @@ public void getBlock() { @Test public void getTenBlocks() { HostBuilder builder1 = HostBuilder.create(TestPorts.getPort(), - new RamProviderStore(1000), new RamRecordStore(), new RamBlockstore(), (c, p, a) -> CompletableFuture.completedFuture(true)); + new RamProviderStore(1000), new RamRecordStore(), new RamBlockstore(), (c, p, a) -> CompletableFuture.completedFuture(true), false); Host node1 = builder1.build(); RamBlockstore blockstore2 = new RamBlockstore(); HostBuilder builder2 = HostBuilder.create(TestPorts.getPort(), - new RamProviderStore(1000), new RamRecordStore(), blockstore2, (c, p, a) -> CompletableFuture.completedFuture(true)); + new RamProviderStore(1000), new RamRecordStore(), blockstore2, (c, p, a) -> CompletableFuture.completedFuture(true), false); Host node2 = builder2.build(); node1.start().join(); node2.start().join();