diff options
author | Benjamin Peterson <benjamin@python.org> | 2011-09-28 12:20:00 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2011-09-28 12:20:00 (GMT) |
commit | a6e50f589fa328a77b70cde0747f70210c650f49 (patch) | |
tree | ffc3bf12d683e5d2af40ed0be0ad841bffcfe017 /Lib | |
parent | e28544ad5f6cd474ed742a18c557574b03fa6fba (diff) | |
download | cpython-a6e50f589fa328a77b70cde0747f70210c650f49.zip cpython-a6e50f589fa328a77b70cde0747f70210c650f49.tar.gz cpython-a6e50f589fa328a77b70cde0747f70210c650f49.tar.bz2 |
this test works as expected now
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_pep3131.py | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/Lib/test/test_pep3131.py b/Lib/test/test_pep3131.py index df0f64d..2e6b90a 100644 --- a/Lib/test/test_pep3131.py +++ b/Lib/test/test_pep3131.py @@ -17,12 +17,7 @@ class PEP3131Test(unittest.TestCase): def test_non_bmp_normalized(self): 𝔘𝔫𝔦𝔠𝔬𝔡𝔢 = 1 - # On wide builds, this is normalized, but on narrow ones it is not. See - # #12746. - try: - self.assertIn("𝔘𝔫𝔦𝔠𝔬𝔡𝔢", dir()) - except AssertionError: - raise unittest.case._ExpectedFailure(sys.exc_info()) + self.assertIn("Unicode", dir()) def test_invalid(self): try: |