Skip to content

Commit

Permalink
update test dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
michielpost committed May 12, 2024
1 parent db3c246 commit 8f31534
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
11 changes: 7 additions & 4 deletions src/aoWebWallet.Tests/aoWebWallet.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,13 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="coverlet.collector" Version="6.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
<PackageReference Include="MSTest.TestAdapter" Version="3.1.1" />
<PackageReference Include="MSTest.TestFramework" Version="3.1.1" />
<PackageReference Include="coverlet.collector" Version="6.0.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
<PackageReference Include="MSTest.TestAdapter" Version="3.3.1" />
<PackageReference Include="MSTest.TestFramework" Version="3.3.1" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/aoWebWallet/ViewModels/WalletDetailViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ private async Task LoadBalanceDataList(string address, bool onlyNew = false)
var balanceData = new BalanceDataViewModel { Token = token };
BalanceDataList.Add(balanceData);

await Task.Delay(30);
await Task.Delay(50);

balanceData.BalanceDataLoader.DataLoader.LoadAsync(async () =>
{
Expand Down

0 comments on commit 8f31534

Please sign in to comment.