You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
thrownewRegressionTestException($"Expected all contracts to be initialized. Added: {string.Join(", ",addedContracts.Select(x =>x.Symbol.Value))}, Initialized: {string.Join(", ",_initializedContracts.Select(x =>x.Symbol.Value))}");
113
+
thrownewRegressionTestException($"Expected all contracts to be initialized. Added: {string.Join(", ",addedContracts.Select(x =>x.Symbol.Value))}, Initialized: {string.Join(", ",_initializedContracts.Select(x =>$"{x.Key.Symbol.Value} - {x.Value}"))}");
110
114
}
111
115
112
116
// The first contract will be selected always, so we expect it to be added only once
Copy file name to clipboardExpand all lines: Common/Securities/Security.cs
+13-12Lines changed: 13 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -52,7 +52,7 @@ public class Security : DynamicObject, ISecurityPrice
52
52
/// Uses concurrent bag to avoid list enumeration threading issues
53
53
/// </summary>
54
54
/// <remarks>Just use a list + lock, not concurrent bag, avoid garbage it creates for features we don't need here. See https://github.com/dotnet/runtime/issues/23103</remarks>
0 commit comments