Skip to content

Commit

Permalink
Fix comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
tschumpr committed Jun 13, 2024
1 parent e4f9711 commit 7f55916
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Geodatenbezug.Test/GdalAssert.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ internal static void AssertLayerFields(Layer resultLayer, List<string> expectedL
resultLayerFields.Add(resultLayerDefn.GetFieldDefn(i).GetName());
}

CollectionAssert.AreEqual(expectedLayerFields, resultLayerFields);
CollectionAssert.AreEquivalent(expectedLayerFields, resultLayerFields);
}

/// <summary>
Expand Down

0 comments on commit 7f55916

Please sign in to comment.