[Python-checkins] cpython: Re-enable test.

martin.v.loewis python-checkins at python.org
Thu Sep 29 13:52:06 CEST 2011


http://hg.python.org/cpython/rev/50f008019213
changeset:   72526:50f008019213
user:        Martin v. Löwis <martin at v.loewis.de>
date:        Thu Sep 29 13:49:10 2011 +0200
summary:
  Re-enable test.

files:
  Lib/test/test_pep3131.py |  5 +----
  1 files changed, 1 insertions(+), 4 deletions(-)


diff --git a/Lib/test/test_pep3131.py b/Lib/test/test_pep3131.py
--- a/Lib/test/test_pep3131.py
+++ b/Lib/test/test_pep3131.py
@@ -17,10 +17,7 @@
 
     def test_non_bmp_normalized(self):
         𝔘𝔫𝔦𝔠𝔬𝔡𝔢 = 1
-        try:
-            self.assertIn("Unicode", dir())
-        except AssertionError:
-            raise unittest._ExpectedFailure("doesn't work yet")
+        self.assertIn("Unicode", dir())
 
     def test_invalid(self):
         try:

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list