File tree 1 file changed +4
-4
lines changed
test/GeoJSON.Net.Contrib.Wkb.Test
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -45,20 +45,20 @@ public void EncodeDecodePolygonTest()
45
45
Assert . Equal ( polygon , processedPolygon ) ;
46
46
}
47
47
48
- [ Fact ( Skip = "Equal method does not seem to be working right" ) ]
48
+ [ Fact ]
49
49
public void EncodeDecodePolygonWithHoleTest ( )
50
50
{
51
51
var processedPolygon = polygonWithHole . ToWkb ( ) . ToGeoJSONObject < Polygon > ( ) ;
52
52
53
- Assert . Equal ( polygon , processedPolygon ) ;
53
+ Assert . Equal ( polygonWithHole , processedPolygon ) ;
54
54
}
55
55
56
- [ Fact ( Skip = "Equal method does not seem to be working right" ) ]
56
+ [ Fact ]
57
57
public void EncodeDecodePolygonWithHoleReverseWindingTest ( )
58
58
{
59
59
var processedPolygon = polygonWithHoleReverseWinding . ToWkb ( ) . ToGeoJSONObject < Polygon > ( ) ;
60
60
61
- Assert . Equal ( polygon , processedPolygon ) ;
61
+ Assert . Equal ( polygonWithHoleReverseWinding , processedPolygon ) ;
62
62
}
63
63
64
64
[ Fact ]
You can’t perform that action at this time.
0 commit comments