Skip to content

Commit

Permalink
Remove extra blank lines in "ToDataTable" tests
Browse files Browse the repository at this point in the history
  • Loading branch information
atifaziz committed Dec 11, 2023
1 parent 7424fa2 commit ab184db
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions MoreLinq.Test/ToDataTableTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,8 @@ sealed class TestObject(int key)
public override string ToString() => nameof(TestObject);
}


readonly IReadOnlyCollection<TestObject> testObjects;


public ToDataTableTest() =>
this.testObjects = Enumerable.Range(0, 3)
.Select(i => new TestObject(i))
Expand Down Expand Up @@ -174,7 +172,6 @@ public void ToDataTableWithSchema()

readonly struct Point
{

#pragma warning disable CA1805 // Do not initialize unnecessarily (avoids CS0649)
public static Point Empty = new();
#pragma warning restore CA1805 // Do not initialize unnecessarily
Expand Down

0 comments on commit ab184db

Please sign in to comment.