Small coding style fixes.
authorBlewzman <dw@exram.de>
Thu, 5 Dec 2013 18:49:04 +0000 (19:49 +0100)
committerBlewzman <dw@exram.de>
Thu, 5 Dec 2013 18:49:04 +0000 (19:49 +0100)
mcs/class/System.Core/Test/System.Linq/EnumerableFixture.cs

index ad2e2a1084fa5ece64a27b9a634bf1c49d3496eb..55d240df83c738b250a7d3b154f18444d9817574 100644 (file)
@@ -542,8 +542,8 @@ namespace MonoTests.System.Linq
                [Test]
                public void ElementAt_ReadOnlyListOptimization_ReturnsValueAtGivenIndex()
                {
-                       var source = new NonEnumerableReadOnlyList<int>(new List<int> (new[] { 1, 2, 3, 4, 5, 6 }));
-                       Assert.That(source.ElementAt(2), Is.EqualTo(3));
+                       var source = new NonEnumerableReadOnlyList<int> (new List<int> (new[] { 1, 2, 3, 4, 5, 6 }));
+                       Assert.That(source.ElementAt (2), Is.EqualTo (3));
                }
 
                [Test]
@@ -570,8 +570,8 @@ namespace MonoTests.System.Linq
                [Test]
                public void ElementAtOrDefault_ReadOnlyListOptimization_ReturnsValueAtGivenIndex()
                {
-                       var source = new NonEnumerableReadOnlyList<int>(new List<int>(new[] { 1, 2, 3, 4, 5, 6 }));
-                       Assert.That(source.ElementAtOrDefault(2), Is.EqualTo(3));
+                       var source = new NonEnumerableReadOnlyList<int>(new List<int> (new[] { 1, 2, 3, 4, 5, 6 }));
+                       Assert.That(source.ElementAtOrDefault (2), Is.EqualTo (3));
                }
 
                [Test]