Skip to content

Commit 7d501b8

Browse files
committed
Cleanup
1 parent f38bd78 commit 7d501b8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Main/tests/Collections/ComparerBuilderTests.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ public void DistinctTest()
8686
new TestClass { Field1 = 2, Prop2 = "1" },
8787
new TestClass { Field1 = 2, Prop2 = "2" },
8888
new TestClass { Field1 = 2, Prop2 = "2" },
89-
null,
89+
null
9090
};
9191

9292
Assert.That(arr.Distinct(eq).Count(), Is.EqualTo(5));
@@ -104,7 +104,7 @@ public void DistinctByMember1Test()
104104
new TestClass { Field1 = 2, Prop2 = "1" },
105105
new TestClass { Field1 = 2, Prop2 = "2" },
106106
new TestClass { Field1 = 2, Prop2 = "2" },
107-
null,
107+
null
108108
};
109109

110110
Assert.That(arr.Distinct(eq).Count(), Is.EqualTo(3));
@@ -122,7 +122,7 @@ public void DistinctByMember2Test()
122122
new TestClass { Field1 = 2, Prop2 = "1" },
123123
new TestClass { Field1 = 2, Prop2 = "2" },
124124
new TestClass { Field1 = 2, Prop2 = "2" },
125-
null,
125+
null
126126
};
127127

128128
Assert.That(arr.Distinct(eq).Count(), Is.EqualTo(5));

0 commit comments

Comments
 (0)