From c49d3b1e023777a004ee90502d74bf8cdc90da84 Mon Sep 17 00:00:00 2001 From: nick black Date: Sat, 4 Dec 2021 00:18:21 -0600 Subject: [PATCH] enable RightToLeft test on apple --- src/tests/plane.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/tests/plane.cpp b/src/tests/plane.cpp index 14db1332f..910c044a2 100644 --- a/src/tests/plane.cpp +++ b/src/tests/plane.cpp @@ -781,12 +781,10 @@ TEST_CASE("Plane") { CHECK(0 < ncplane_putstr(n_, "I write English + מילים בעברית together.")); CHECK(0 == ncplane_cursor_move_yx(n_, 5, 5)); CHECK(0 < ncplane_putstr(n_, "|🔥|I have not yet ־ begun to hack|🔥|")); -#ifndef __APPLE__ // FIXME CHECK(0 == ncplane_cursor_move_yx(n_, 7, 5)); CHECK(0 < ncplane_putstr(n_, "㉀㉁㉂㉃㉄㉅㉆㉇㉈㉉㉊㉋㉌㉍㉎㉏㉐")); CHECK(0 == ncplane_cursor_move_yx(n_, 8, 5)); CHECK(0 < ncplane_putstr(n_, "㉑㉒㉓㉔㉕㉖㉗㉘㉙㉚㉛㉜㉝㉞㉟")); -#endif CHECK(0 == notcurses_render(nc_)); }