summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/theme-parser-test.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/theme-parser-test.c b/test/theme-parser-test.c
index 30f7b17e..a1c9d155 100644
--- a/test/theme-parser-test.c
+++ b/test/theme-parser-test.c
@@ -522,10 +522,11 @@ int main ( int argc, char ** argv )
{
rofi_theme = NULL;
error = 0;
- rofi_theme_parse_string ( "configuration { font: \"blaat€\"; y-offset: 4; }");
+ rofi_theme_parse_string ( "configuration { font: \"blaat€\"; yoffset: 4; }");
TASSERT ( error == 0 );
- TASSERT ( g_utf8_collate ( config.font, "blaat€" ) == 0 );
+ printf("%s\n", config.menu_font);
+ TASSERT ( g_utf8_collate ( config.menu_font, "blaat€" ) == 0 );
TASSERT ( config.y_offset == 4 );
rofi_theme_free ( rofi_theme );
rofi_theme = NULL;