Skip to content

Commit abaf1b1

Browse files
committed
Small fix
1 parent 1051fdc commit abaf1b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Analyzers/MSTest.Analyzers/DuplicateDataRowAnalyzer.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ public bool Equals(ImmutableArray<TypedConstant> x, ImmutableArray<TypedConstant
8080

8181
for (int i = 0; i < x.Length; i++)
8282
{
83-
if (AreTypedConstantEquals(x[i], y[i]))
83+
if (!AreTypedConstantEquals(x[i], y[i]))
8484
{
8585
return false;
8686
}

0 commit comments

Comments
 (0)