diff options
author | Guido van Rossum <guido@python.org> | 2007-06-14 00:04:46 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2007-06-14 00:04:46 (GMT) |
commit | f903f00ee211529811001ad0c35764efe68ca039 (patch) | |
tree | f6e8cab1e1d7124e92adb1ba2fac26c3ae075a6d /Lib/test/test_unicode.py | |
parent | 8518bdc382e509a6cf49c393886ea3dc6e7b577a (diff) | |
download | cpython-f903f00ee211529811001ad0c35764efe68ca039.zip cpython-f903f00ee211529811001ad0c35764efe68ca039.tar.gz cpython-f903f00ee211529811001ad0c35764efe68ca039.tar.bz2 |
Fix some tests by deleting stuff.
Diffstat (limited to 'Lib/test/test_unicode.py')
-rw-r--r-- | Lib/test/test_unicode.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_unicode.py b/Lib/test/test_unicode.py index fbad984..11c7328 100644 --- a/Lib/test/test_unicode.py +++ b/Lib/test/test_unicode.py @@ -791,7 +791,7 @@ class UnicodeTest( # to take a 64-bit long, this test should apply to all platforms. if sys.maxint > (1 << 32) or struct.calcsize('P') != 4: return - self.assertRaises(OverflowError, u't\tt\t'.expandtabs, sys.maxint) + self.assertRaises(OverflowError, 't\tt\t'.expandtabs, sys.maxint) def test_main(): |