From 259c5f5e3eeee848c4d1d6a0cc0a83c3a6c39252 Mon Sep 17 00:00:00 2001 From: nick black Date: Wed, 31 Mar 2021 02:01:39 -0400 Subject: [PATCH] [tests] pixel test shouldn't check for wipe function --- src/tests/pixel.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/tests/pixel.cpp b/src/tests/pixel.cpp index 438ca76de..2a0dd9522 100644 --- a/src/tests/pixel.cpp +++ b/src/tests/pixel.cpp @@ -19,7 +19,6 @@ TEST_CASE("Pixel") { CHECK(0 < nc_->tcache.cellpixy); CHECK(0 < nc_->tcache.cellpixx); CHECK(nc_->tcache.sixel_supported); - CHECK(nullptr != nc_->tcache.pixel_cell_wipe); } #ifdef NOTCURSES_USE_MULTIMEDIA @@ -110,7 +109,7 @@ TEST_CASE("Pixel") { } SUBCASE("PixelBigCellWipePolychromatic") { - // first, assemble a visual equivalent to 4 cells + // first, assemble a visual equivalent to 100 cells auto y = 10 * nc_->tcache.cellpixy; auto x = 10 * nc_->tcache.cellpixx; std::vector v(x * y, 0xffffffff);