wcs_test.cpp: Fix invalid unicode strings

Signed-off-by: Jaroslaw Pelczar <[email protected]>
Change-Id: Ic09c229a1ee857e466ededbaa05fdd948c009fcd
Reviewed-on: https://review.haiku-os.org/c/haiku/+/1795
Reviewed-by: waddlesplash <[email protected]>
This commit is contained in:
Jaroslaw Pelczar
2019-08-30 14:25:20 +00:00
committed by waddlesplash
parent 2995019e04
commit 979676fb4e
+5 -5
View File
@@ -2494,11 +2494,11 @@ test_collation()
{ L"tBst", L"t\xE4st", 1, 0 },
{ L"taest", L"t\xE6st", -1, 0 },
{ L"tafst", L"t\xE6st", 1, 0 },
{ L"taa", L"t\xE4"L"a", -1, 0 },
{ L"tab", L"t\xE4"L"b", -1, 0 },
{ L"tad", L"t\xE4"L"d", -1, 0 },
{ L"tae", L"t\xE4"L"e", -1, 0 },
{ L"taf", L"t\xE4"L"f", -1, 0 },
{ L"taa", L"t\xE4" L"a", -1, 0 },
{ L"tab", L"t\xE4" L"b", -1, 0 },
{ L"tad", L"t\xE4" L"d", -1, 0 },
{ L"tae", L"t\xE4" L"e", -1, 0 },
{ L"taf", L"t\xE4" L"f", -1, 0 },
{ L"cote", L"cot\xE9", -1, 0 },
{ L"cot\xE9", L"c\xF4te", -1, 0 },
{ L"c\xF4te", L"c\xF4t\xE9", -1, 0 },