Get test to work on alpha

This commit is contained in:
Neal Norwitz 2003-02-23 23:15:26 +00:00
parent d5a65a77cf
commit 15ff0e9342

View file

@ -504,7 +504,7 @@ class MixinStrUnicodeUserStringTest:
self.checkequal('abcabcabc', 'abc', '__mul__', 3)
self.checkraises(TypeError, 'abc', '__mul__')
self.checkraises(TypeError, 'abc', '__mul__', '')
self.checkraises(OverflowError, 10000*'abc', '__mul__', sys.maxint)
self.checkraises(OverflowError, 10000*'abc', '__mul__', 2000000000)
def test_join(self):
# join now works with any sequence type