unit-tests: Fix settings test after merging multi-line strings

This commit is contained in:
Tobias Brunner
2015-03-23 10:46:32 +01:00
parent d143e7b04b
commit cb461de2a2
@@ -922,7 +922,7 @@ START_TEST(test_strings)
verify_string("all { special } characters # can be used.", "special"); verify_string("all { special } characters # can be used.", "special");
verify_string("is fine", "unterminated"); verify_string("is fine", "unterminated");
verify_string("produces a warning", "but"); verify_string("produces a warning", "but");
verify_string("can either be encoded\nor\nescaped", "newlines"); verify_string("can either be encoded\nor escaped", "newlines");
verify_string("\"and\" slashes \\ can \\ be", "quotes"); verify_string("\"and\" slashes \\ can \\ be", "quotes");
verify_string("strings are combined", "multiple"); verify_string("strings are combined", "multiple");
} }