Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
marcindsobczak committed Jun 14, 2023
1 parent d1771c9 commit 5639ac5
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,6 @@ private class TestContext
public FullPruner Pruner { get; }
public MemDb TrieDb { get; }
public TestMemDb CopyDb { get; }
public IDriveInfo DriveInfo { get; set; } = Substitute.For<IDriveInfo>();
public IChainEstimations _chainEstimations = ChainSizes.UnknownChain.Instance;

public IProcessExitSource ProcessExitSource { get; } = Substitute.For<IProcessExitSource>();
Expand Down Expand Up @@ -204,7 +203,7 @@ public TestContext(
FullPruningMaxDegreeOfParallelism = degreeOfParallelism,
FullPruningMemoryBudgetMb = fullScanMemoryBudgetMb,
FullPruningCompletionBehavior = completionBehavior
}, BlockTree, StateReader, ProcessExitSource, _chainEstimations, DriveInfo, LimboLogs.Instance);
}, BlockTree, StateReader, ProcessExitSource, _chainEstimations, 0, LimboLogs.Instance);
}

public async Task<bool> WaitForPruning()
Expand Down

0 comments on commit 5639ac5

Please sign in to comment.