Skip to content

Commit

Permalink
Fix final WKB test, GH-934
Browse files Browse the repository at this point in the history
  • Loading branch information
pramsey committed Jul 1, 2023
1 parent cdf1abb commit dd842a0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/unit/capi/GEOSWKBWriterTest.cpp
Expand Up @@ -38,8 +38,9 @@ template<>
template<>
void object::test<1>()
{
GEOSWKBWriter_setByteOrder(wkbwriter_, GEOS_WKB_XDR);
ensure_equals(GEOSWKBWriter_getIncludeSRID(wkbwriter_), 0);
ensure_equals(GEOSWKBWriter_getByteOrder(wkbwriter_), getMachineByteOrder());
ensure_equals(GEOSWKBWriter_getByteOrder(wkbwriter_), GEOS_WKB_XDR);
ensure_equals(GEOSWKBWriter_getFlavor(wkbwriter_), GEOS_WKB_EXTENDED);
ensure_equals(GEOSWKBWriter_getOutputDimension(wkbwriter_), 4);
}
Expand Down

0 comments on commit dd842a0

Please sign in to comment.