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
Updating from 6.5.1 to 7.0.0 caused one of our unit tests to fail. Running Net Core 3.1.
You will see the cloneTest in the test below does not contain the decimal or enum values from the original.
[Flags]publicenumCloneTestEnum{Value1=1,Value2=2,Value3=100,Value4=200,Value5=300}publicclassCloneTestEnumContainer{publicCloneTestEnumContainer(){}publicCloneTestEnumContainer(CloneTestEnumtype,decimalvalue){Type=type;Value=value;}publicCloneTestEnumType{get;set;}publicdecimalValue{get;set;}}publicclassCloneTestEnumContainerListContainer{publicList<CloneTestEnumContainer> List1 {get;set;}=newList<CloneTestEnumContainer>();//parts of the pricing calcs that need VAT addedpublicList<CloneTestEnumContainer> List2 {get;set;}=newList<CloneTestEnumContainer>();//parts of the pricing calcs that must NOT have VATpublicReadOnlyCollection<CloneTestEnumContainer> CombinedLists => List1.Concat(List2).ToList().AsReadOnly();}
Updating from 6.5.1 to 7.0.0 caused one of our unit tests to fail. Running Net Core 3.1.
You will see the
cloneTest
in the test below does not contain the decimal or enum values from the original.The text was updated successfully, but these errors were encountered: