From 5e1620880166a9834d9ba7097c26e0c05c3c46f6 Mon Sep 17 00:00:00 2001 From: nick black Date: Fri, 18 Jun 2021 15:08:31 -0400 Subject: [PATCH] remove garbage CursesStyles unit test #1791 --- src/tests/notcurses.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/tests/notcurses.cpp b/src/tests/notcurses.cpp index 07a642ec5..1688e951a 100644 --- a/src/tests/notcurses.cpp +++ b/src/tests/notcurses.cpp @@ -41,12 +41,6 @@ TEST_CASE("NotcursesBase") { CHECK(newy == y); } - // we should at least have NCSTYLE_BOLD everywhere, i should think? - SUBCASE("CursesStyles") { - unsigned attrs = notcurses_supported_styles(nc_); - CHECK(1 == !!(NCSTYLE_BOLD & attrs)); - } - // it is an error to attempt to destroy the standard plane SUBCASE("RejectDestroyStdPlane") { ncplane* ncp = notcurses_stdplane(nc_);