From 4e7aa06333341e5f0c76c909355ff00614c1ae0f Mon Sep 17 00:00:00 2001 From: Dave Davenport Date: Sun, 14 May 2017 17:42:05 +0200 Subject: [PATCH] Update test to have no user path. --- test/theme-parser-test.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/theme-parser-test.c b/test/theme-parser-test.c index 55a692a1..68eba616 100644 --- a/test/theme-parser-test.c +++ b/test/theme-parser-test.c @@ -803,10 +803,10 @@ END_TEST START_TEST ( test_import_error ) { - rofi_theme_parse_string("@import \"non-existing-file.rasi\""); + rofi_theme_parse_string("@import \"/non-existing-file.rasi\""); const char *errstr = - "Failed to open theme: /home/qball/Programming/GitHub/rofi/build/non-existing-file.rasi\n"\ + "Failed to open theme: /non-existing-file.rasi\n"\ "Error: No such file or directory"; ck_assert_int_eq ( error, 1); ck_assert_str_eq ( error_msg->str, errstr );