Skip to content

Commit

Permalink
Fix coinjoin tests (WalletWasabi#13214)
Browse files Browse the repository at this point in the history
* Fix coinjoin tests by changing the min input count in tests

* Fix Warnings

---------

Co-authored-by: Lucas Ontivero <[email protected]>
  • Loading branch information
Turbolay and lontivero authored Jul 1, 2024
1 parent 3656458 commit cae7456
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion WalletWasabi.Tests/Helpers/WabiSabiFactory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ public static CoinJoinClient CreateTestCoinJoinClient(
outputProvider,
roundStateUpdater,
coinSelector,
new CoinJoinConfiguration("CoinJoinCoordinatorIdentifier", 0.3m, 150.0m, 21),
new CoinJoinConfiguration("CoinJoinCoordinatorIdentifier", 0.3m, 150.0m, 1),
new LiquidityClueProvider(),
TimeSpan.Zero,
TimeSpan.Zero,
Expand Down
1 change: 0 additions & 1 deletion WalletWasabi.Tests/XunitConfiguration/RegTestFixture.cs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ public RegTestFixture()
.ConfigureWebHostDefaults(webBuilder => webBuilder
.UseStartup<Startup>()
.UseConfiguration(conf)
.UseWebRoot("../../../../WalletWasabi.Backend/wwwroot")
.UseUrls(BackendEndPoint))
.Build();

Expand Down

0 comments on commit cae7456

Please sign in to comment.