Fix some tests by deleting stuff.

This commit is contained in:
Guido van Rossum 2007-06-14 00:04:46 +00:00
parent 8518bdc382
commit f903f00ee2
4 changed files with 1 additions and 56 deletions

View file

@ -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():