From 7ffb86eb670b5372ef7f6eab400e366d58c9c233 Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Sun, 30 Dec 2018 16:50:44 -0600 Subject: [PATCH] unicode.case: Apostrophe is now a word break, instead the right single quote is what we want here. Unicode changed, the file changed, it's different now. File in question: basis/unicode/UCD/auxiliary/WordBreakProperty.txt --- basis/unicode/case/case-tests.factor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/basis/unicode/case/case-tests.factor b/basis/unicode/case/case-tests.factor index 7b104a356b..5061689755 100644 --- a/basis/unicode/case/case-tests.factor +++ b/basis/unicode/case/case-tests.factor @@ -3,7 +3,7 @@ USING: unicode tools.test namespaces strings unicode.case unicode.case.private ; -{ "Hello How Are You? I'm Good" } [ "hEllo how ARE yOU? I'm good" >title ] unit-test +{ "Hello How Are You? I’m Good" } [ "hEllo how ARE yOU? I’m good" >title ] unit-test { "FUSS" } [ "Fu\u0000DF" >upper ] unit-test { "\u0003C3a\u0003C2 \u0003C3\u0003C2 \u0003C3a\u0003C2" } [ "\u0003A3A\u0003A3 \u0003A3\u0003A3 \u0003A3A\u0003A3" >lower ] unit-test { t } [ "hello how are you?" lower? ] unit-test