Skip to content

Commit

Permalink
fix!: merge mishap
Browse files Browse the repository at this point in the history
  • Loading branch information
David-Petrov committed Apr 29, 2024
1 parent 1304925 commit 2794f0f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/java/org/peergos/BitswapTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit 2794f0f

Please sign in to comment.