summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2017-04-27 00:03:59 +0200
committerDave Davenport <qball@gmpclient.org>2017-04-27 00:03:59 +0200
commitb1ecb6ca77a939495219d79fd96ccc60db3bb7eb (patch)
tree02065c0d4552a9e35f7861f6babe48b461112470
parentd3594e275e911a71361ea2a545fc4d3f1b1a686e (diff)
[Test] Fix 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;