From 0968e13159e40d925328b3008b261d9f0ffc44eb Mon Sep 17 00:00:00 2001 From: artemp Date: Wed, 17 May 2017 17:41:44 +0200 Subject: [PATCH] fix compile oops #3669 #3670 --- test/unit/imaging/tiff_io.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/unit/imaging/tiff_io.cpp b/test/unit/imaging/tiff_io.cpp index 486c74177..2c5380092 100644 --- a/test/unit/imaging/tiff_io.cpp +++ b/test/unit/imaging/tiff_io.cpp @@ -156,7 +156,7 @@ void test_tiff_reader(std::string const& pattern) auto tiff = tiff_reader.read(11, 13, width - 11, height - 13); CHECK(tiff.is()); auto im2 = tiff.get(); - auto view = mapnik::image_view_rgba8(11, 13, width, height, im); + auto view = mapnik::image_view(11, 13, width, height, im); REQUIRE(identical(view, im2)); } } @@ -174,7 +174,7 @@ TEST_CASE("tiff io") SECTION("tiff-reader gray8") { - test_tiff_reader("tiff_gray"); + test_tiff_reader("tiff_gray"); } SECTION("scan rgb8 striped")