From 091908295f68b2473fff1a7d3fc74f0c97fae8b9 Mon Sep 17 00:00:00 2001 From: nick black Date: Fri, 11 Jun 2021 20:27:33 -0400 Subject: [PATCH] fix up Fills::MergeDownUni unit test #1615 --- src/tests/fills.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tests/fills.cpp b/src/tests/fills.cpp index 6eac56c66..8dd4ae3e5 100644 --- a/src/tests/fills.cpp +++ b/src/tests/fills.cpp @@ -434,7 +434,7 @@ TEST_CASE("Fills") { CHECK(0 == ncplane_cursor_move_yx(p3, 0, 0)); // make sure glyphs replace glyps CHECK(0 < ncplane_putstr(p3, "πŸž΅πŸžΆπŸž·πŸžΈπŸžΉβ–ˆβ–€β–„β–Œβ–")); - CHECK(0 == ncplane_mergedown_simple(p3, nullptr)); + CHECK(0 == ncplane_mergedown_simple(p3, n_)); nccell c3 = CELL_TRIVIAL_INITIALIZER; for(int i = 0 ; i < 10 ; ++i){ CHECK(0 < ncplane_at_yx_cell(n_, 0, i, &cbase));