Skip to content

Commit 5a33cde

Browse files
committed
Fix unit tests: compare output to the correct input.
1 parent 70fd191 commit 5a33cde

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/GeoJSON.Net.Contrib.Wkb.Test/EncodeDecodeTests.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,20 +45,20 @@ public void EncodeDecodePolygonTest()
4545
Assert.Equal(polygon, processedPolygon);
4646
}
4747

48-
[Fact(Skip = "Equal method does not seem to be working right")]
48+
[Fact]
4949
public void EncodeDecodePolygonWithHoleTest()
5050
{
5151
var processedPolygon = polygonWithHole.ToWkb().ToGeoJSONObject<Polygon>();
5252

53-
Assert.Equal(polygon, processedPolygon);
53+
Assert.Equal(polygonWithHole, processedPolygon);
5454
}
5555

56-
[Fact(Skip = "Equal method does not seem to be working right")]
56+
[Fact]
5757
public void EncodeDecodePolygonWithHoleReverseWindingTest()
5858
{
5959
var processedPolygon = polygonWithHoleReverseWinding.ToWkb().ToGeoJSONObject<Polygon>();
6060

61-
Assert.Equal(polygon, processedPolygon);
61+
Assert.Equal(polygonWithHoleReverseWinding, processedPolygon);
6262
}
6363

6464
[Fact]

0 commit comments

Comments
 (0)