remove stderr

This commit is contained in:
artemp 2016-05-17 13:05:37 +02:00
parent 4ca0c21d73
commit 8f74de8525

View file

@ -110,7 +110,6 @@ using attr = std::tuple<std::string, mapnik::value>;
#define REQUIRE_ATTRIBUTES(feature, attrs) \
REQUIRE(bool(feature)); \
for (auto const &kv : attrs) { \
std::cerr << std::get<0>(kv) << std::endl; \
REQUIRE(feature->has_key(std::get<0>(kv))); \
CHECK(feature->get(std::get<0>(kv)) == std::get<1>(kv)); \
} \