Skip to content

Commit

Permalink
Revert unneeded changes to tests
Browse files Browse the repository at this point in the history
  • Loading branch information
peterstace committed May 13, 2024
1 parent a8c2dba commit 50d0ffc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions geom/attr_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1553,17 +1553,17 @@ func TestSummary(t *testing.T) {
},
{
name: "XYZ single point",
wkt: "GEOMETRYCOLLECTION Z (POINT Z(0 0 0.5))",
wkt: "GEOMETRYCOLLECTION (POINT Z(0 0 0.5))",
wantSummary: "GeometryCollection[XYZ] with 1 child geometry consisting of 1 total point",
},
{
name: "XYM single point",
wkt: "GEOMETRYCOLLECTION M (POINT M(0 0 0.8))",
wkt: "GEOMETRYCOLLECTION (POINT M(0 0 0.8))",
wantSummary: "GeometryCollection[XYM] with 1 child geometry consisting of 1 total point",
},
{
name: "XYZM single point",
wkt: "GEOMETRYCOLLECTION ZM (POINT ZM(0 0 0.5 0.8))",
wkt: "GEOMETRYCOLLECTION (POINT ZM(0 0 0.5 0.8))",
wantSummary: "GeometryCollection[XYZM] with 1 child geometry consisting of 1 total point",
},
{
Expand Down

0 comments on commit 50d0ffc

Please sign in to comment.