Try to fix netf, once again into the breach

This commit is contained in:
Archi
2021-12-12 01:44:17 +01:00
parent 4f598d5c8f
commit 225003c5d1
14 changed files with 2 additions and 24 deletions

View File

@@ -486,7 +486,6 @@ public sealed class Bot {
private static void AssertResultMatchesExpectation(IReadOnlyDictionary<(uint RealAppID, ulong ContextID, ulong ClassID), uint> expectedResult, IReadOnlyCollection<Asset> itemsToSend) {
ArgumentNullException.ThrowIfNull(expectedResult);
ArgumentNullException.ThrowIfNull(itemsToSend);
Dictionary<(uint RealAppID, ulong ContextID, ulong ClassID), long> realResult = itemsToSend.GroupBy(static asset => (asset.RealAppID, asset.ContextID, asset.ClassID)).ToDictionary(static group => group.Key, static group => group.Sum(static asset => asset.Amount));