Index: test/DeltaShell/DeltaShell.IntegrationTests/Mocks/ComplexObject.cs =================================================================== diff -u -r8f6ae890fed8e8eae3a32f9c0498a10f82e0ddf9 -r5fc71a385897af92ccb092f2f969b5709afab85a --- test/DeltaShell/DeltaShell.IntegrationTests/Mocks/ComplexObject.cs (.../ComplexObject.cs) (revision 8f6ae890fed8e8eae3a32f9c0498a10f82e0ddf9) +++ test/DeltaShell/DeltaShell.IntegrationTests/Mocks/ComplexObject.cs (.../ComplexObject.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a) @@ -6,11 +6,6 @@ { public string DisplayName { get; set; } - public int CompareTo(object obj) - { - return this.DisplayName.CompareTo(((ComplexObject)obj).DisplayName); - } - public override string ToString() { return DisplayName; @@ -23,5 +18,9 @@ return newObject; } + public int CompareTo(object obj) + { + return DisplayName.CompareTo(((ComplexObject) obj).DisplayName); + } } } \ No newline at end of file