summaryrefslogtreecommitdiff
path: root/src/test/test-conf-parser.c
diff options
context:
space:
mode:
authorYu Watanabe <watanabe.yu+github@gmail.com>2018-06-04 00:36:46 +0900
committerYu Watanabe <watanabe.yu+github@gmail.com>2018-06-04 01:38:54 +0900
commitf106314c89b3247e7b8ef2ffca739a87d6e9cee0 (patch)
treeed8e5e90874f44c734cafe43903ac29bfcb45b7d /src/test/test-conf-parser.c
parent97b9c506cf07be74c5771fc624c1e8bb05fd2eab (diff)
downloadsystemd-f106314c89b3247e7b8ef2ffca739a87d6e9cee0.tar.gz
conf-parser: remove redundant utf8-validity check
Diffstat (limited to 'src/test/test-conf-parser.c')
-rw-r--r--src/test/test-conf-parser.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/test-conf-parser.c b/src/test/test-conf-parser.c
index f0e3d6c07e..aa6e4f1a95 100644
--- a/src/test/test-conf-parser.c
+++ b/src/test/test-conf-parser.c
@@ -171,7 +171,7 @@ static void test_config_parse_strv(void) {
test_config_parse_strv_one("foo bar foo", STRV_MAKE("foo", "bar", "foo"));
test_config_parse_strv_one("\"foo bar\" foo", STRV_MAKE("foo bar", "foo"));
test_config_parse_strv_one("\xc3\x80", STRV_MAKE("\xc3\x80"));
- test_config_parse_strv_one("\xc3\x7f", STRV_MAKE_EMPTY);
+ test_config_parse_strv_one("\xc3\x7f", STRV_MAKE("\xc3\x7f"));
}
static void test_config_parse_mode(void) {