mattfennerjesi

Results 1 comments of mattfennerjesi

It isn't pretty, but this workaround works for me: ```c# private void AssertJArraysEquivalentIgnoringOrder(JToken actual, JArray expected) { var newActual = new JArray(actual.Children().OrderBy(c => c.ToString())); var newExpected = new JArray(expected.Children().OrderBy(c =>...