on a wide enough screen, this test breaks

This commit is contained in:
nick black 2019-12-12 17:05:17 -05:00
parent 489ca06fe6
commit 0001fa955d
No known key found for this signature in database
GPG Key ID: 5F43400C21CBFACC

View File

@ -167,7 +167,7 @@ TEST_F(NcplaneTest, EmitEmojiStr) {
EXPECT_LT(0, wrote);
int x, y;
ncplane_cursor_yx(n_, &y, &x);
EXPECT_LT(0, y);
EXPECT_LE(0, y);
EXPECT_NE(1, x); // FIXME tighten in on this
EXPECT_EQ(0, notcurses_render(nc_));
}