Fix tile datasize check

This commit is contained in:
Patrick Niklaus 2017-03-03 14:41:23 +00:00 committed by Patrick Niklaus
parent cc3a4899a2
commit 0770d8b8cf

View File

@ -35,7 +35,7 @@ BOOST_AUTO_TEST_CASE(test_tile)
const auto rc = osrm.Tile(params, result);
BOOST_CHECK(rc == Status::Ok);
BOOST_CHECK(result.size() > 115000);
BOOST_CHECK(result.size() > 114000);
protozero::pbf_reader tile_message(result);
tile_message.next();