From 979676fb4e7d8b9259dc66a59e1342c61432ae8f Mon Sep 17 00:00:00 2001 From: Jaroslaw Pelczar Date: Wed, 28 Aug 2019 17:45:08 +0200 Subject: [PATCH] wcs_test.cpp: Fix invalid unicode strings Signed-off-by: Jaroslaw Pelczar Change-Id: Ic09c229a1ee857e466ededbaa05fdd948c009fcd Reviewed-on: https://review.haiku-os.org/c/haiku/+/1795 Reviewed-by: waddlesplash --- src/tests/system/libroot/posix/wcs_test.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/tests/system/libroot/posix/wcs_test.cpp b/src/tests/system/libroot/posix/wcs_test.cpp index 75ecd3bed5..22b90e473c 100644 --- a/src/tests/system/libroot/posix/wcs_test.cpp +++ b/src/tests/system/libroot/posix/wcs_test.cpp @@ -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 },