Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: microsoft/testfx
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: abaf1b1be4c59a3affeb9d6626a93e27a97f091e
Choose a base ref
..
head repository: microsoft/testfx
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 245cf5098adcbfa1ec8d9c55e1e6149d9a334072
Choose a head ref
Showing with 1 addition and 1 deletion.
  1. +1 −1 src/Analyzers/MSTest.Analyzers/DuplicateDataRowAnalyzer.cs
2 changes: 1 addition & 1 deletion src/Analyzers/MSTest.Analyzers/DuplicateDataRowAnalyzer.cs
Original file line number Diff line number Diff line change
@@ -93,7 +93,7 @@ private static bool AreTypedConstantEquals(TypedConstant typedConstant1, TypedCo
{
// If the Kind doesn't match or the Type doesn't match, they are not equal.
if (typedConstant1.Kind != typedConstant2.Kind ||
SymbolEqualityComparer.Default.Equals(typedConstant1.Type, typedConstant2.Type))
!SymbolEqualityComparer.Default.Equals(typedConstant1.Type, typedConstant2.Type))
{
return false;
}