use background in fade unit tests

This commit is contained in:
nick black 2019-12-04 04:45:27 -05:00 committed by Nick Black
parent ae711b7e75
commit f40f8cfb15

View File

@ -32,6 +32,7 @@ class FadeTest : public :: testing::Test {
rgb = 0xffffffu;
}
cell_set_fg(&c, (rgb >> 16u) & 0xff, (rgb >> 8u) & 0xff, rgb & 0xff);
cell_set_bg(&c, rgb & 0xff, (rgb >> 16u) & 0xff, (rgb >> 8u) & 0xff);
EXPECT_LT(0, ncplane_putc(n_, &c));
}
}