Tests: Remove default font tests from LibGfx/TestFontHandling

The system default font functions now rely on communication with
WindowServer and so we can't really test them here.
This commit is contained in:
Andreas Kling 2021-05-21 21:02:43 +02:00
parent 3a4cbbf01c
commit 8f96d20b86

View file

@ -36,16 +36,6 @@ TEST_CASE(test_fontdatabase_for_each_font)
});
}
TEST_CASE(test_default_font)
{
EXPECT(!Gfx::FontDatabase::default_font().name().is_null());
}
TEST_CASE(test_default_fixed_width_font)
{
EXPECT(!Gfx::FontDatabase::default_fixed_width_font().name().is_null());
}
TEST_CASE(test_clone)
{
u8 glyph_height = 1;