From: Sam Steingold Date: Tue, 26 Jul 2022 18:40:49 +0000 (-0400) Subject: a couple more `string-equal-ignore-case' test cases X-Git-Tag: emacs-29.0.90~1447^2~683 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6023b95948e85f44d827e0066832de145737aea7;p=emacs.git a couple more `string-equal-ignore-case' test cases --- diff --git a/test/lisp/subr-tests.el b/test/lisp/subr-tests.el index 1d85631a4b8..6df4a469326 100644 --- a/test/lisp/subr-tests.el +++ b/test/lisp/subr-tests.el @@ -373,7 +373,9 @@ (should (string-equal-ignore-case "abc" "abC")) (should-not (string-equal-ignore-case "abc" "abCD")) (should (string-equal-ignore-case "S" "s")) + (should (string-equal-ignore-case "ẞ" "ß")) ;; not yet: (should (string-equal-ignore-case "SS" "ß")) + ;; not yet: (should (string-equal-ignore-case "SS" "ẞ")) (should (string-lessp "abc" "acb")) (should (string-lessp "aBc" "abc"))