diff options
author | Walter Dörwald <walter@livinglogic.de> | 2007-05-23 20:11:33 (GMT) |
---|---|---|
committer | Walter Dörwald <walter@livinglogic.de> | 2007-05-23 20:11:33 (GMT) |
commit | 85d8e421a605c36893be46a7838adb1559d12ec1 (patch) | |
tree | 635bfd5b6253619f3513f448c9a65b2c7ae3da89 /Lib/test/test_unicodedata.py | |
parent | eab198d2298a7186ae0a18382a12c864a4bb59a3 (diff) | |
download | cpython-85d8e421a605c36893be46a7838adb1559d12ec1.zip cpython-85d8e421a605c36893be46a7838adb1559d12ec1.tar.gz cpython-85d8e421a605c36893be46a7838adb1559d12ec1.tar.bz2 |
Fix test_unicodedata.py.
Diffstat (limited to 'Lib/test/test_unicodedata.py')
-rw-r--r-- | Lib/test/test_unicodedata.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_unicodedata.py b/Lib/test/test_unicodedata.py index 03ff058..95706b2 100644 --- a/Lib/test/test_unicodedata.py +++ b/Lib/test/test_unicodedata.py @@ -176,7 +176,7 @@ class UnicodeFunctionsTest(UnicodeDatabaseTest): def test_east_asian_width(self): eaw = self.db.east_asian_width - self.assertRaises(TypeError, eaw, 'a') + self.assertRaises(TypeError, eaw, str8('a')) self.assertRaises(TypeError, eaw, '') self.assertRaises(TypeError, eaw, 'ra') self.assertEqual(eaw('\x1e'), 'N') |