diff --git a/test/unit/datasource/geojson.cpp b/test/unit/datasource/geojson.cpp index a8812c7d4..30522d12b 100644 --- a/test/unit/datasource/geojson.cpp +++ b/test/unit/datasource/geojson.cpp @@ -141,11 +141,7 @@ TEST_CASE("geojson") std::string json(in); mapnik::geometry::geometry geom; CHECK(mapnik::json::from_geojson(json, geom)); - if (!mapnik::geometry::is_empty(geom)) - { - std::cerr << json << std::endl; - } - // REQUIRE(mapnik::geometry::is_empty(geom)); + REQUIRE(mapnik::geometry::is_empty(geom)); // round trip std::string json_out; CHECK(mapnik::util::to_geojson(json_out, geom));