From: Benjamin Peterson Date: Sun, 5 Aug 2012 22:05:34 +0000 (-0700) Subject: add another testcase X-Git-Tag: v3.3.0b2~29^2~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4eda93723ee06c21332b17c2823ba0ff9896427f;p=python add another testcase --- diff --git a/Lib/test/test_unicode.py b/Lib/test/test_unicode.py index 4024be7e6f..b13a90a823 100644 --- a/Lib/test/test_unicode.py +++ b/Lib/test/test_unicode.py @@ -572,6 +572,7 @@ class UnicodeTest(string_tests.CommonTest, self.assertEqual('fi'.casefold(), 'fi') self.assertEqual('\u03a3'.casefold(), '\u03c3') self.assertEqual('A\u0345\u03a3'.casefold(), 'a\u03b9\u03c3') + self.assertEqual('\u00b5'.casefold(), '\u03bc') def test_upper(self): string_tests.CommonTest.test_upper(self)