diff options
author | Guido van Rossum <guido@python.org> | 2001-01-19 19:01:56 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2001-01-19 19:01:56 (GMT) |
commit | a1374e429b2f9d94320ca1dc0475a845b99659de (patch) | |
tree | e9a48d13d10e1155b7f6531e65db9551dab58aa8 /Lib/test/test_unicode.py | |
parent | e7c87327b3d98359d713b9fc66eae01a041bb624 (diff) | |
download | cpython-a1374e429b2f9d94320ca1dc0475a845b99659de.zip cpython-a1374e429b2f9d94320ca1dc0475a845b99659de.tar.gz cpython-a1374e429b2f9d94320ca1dc0475a845b99659de.tar.bz2 |
Change verify() function to raise TestFailed, not AssertionError.
(I realize that I didn't really test this, because all the tests
succeed, so verify() never raised an AssertionError -- but the test
suite still succeeds, so I'm not too worried.)
Diffstat (limited to 'Lib/test/test_unicode.py')
-rw-r--r-- | Lib/test/test_unicode.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Lib/test/test_unicode.py b/Lib/test/test_unicode.py index 513b5ad..855b0a2 100644 --- a/Lib/test/test_unicode.py +++ b/Lib/test/test_unicode.py @@ -411,7 +411,7 @@ try: except ValueError: pass else: - raise AssertionError, "u'Andr\202'.encode('ascii') failed to raise an exception" + raise TestFailed, "u'Andr\202'.encode('ascii') failed to raise an exception" verify(u'Andr\202 x'.encode('ascii','ignore') == "Andr x") verify(u'Andr\202 x'.encode('ascii','replace') == "Andr? x") @@ -421,7 +421,7 @@ try: except ValueError: pass else: - raise AssertionError, "unicode('Andr\202') failed to raise an exception" + raise TestFailed, "unicode('Andr\202') failed to raise an exception" verify(unicode('Andr\202 x','ascii','ignore') == u"Andr x") verify(unicode('Andr\202 x','ascii','replace') == u'Andr\uFFFD x') @@ -443,7 +443,7 @@ for encoding in ( ): try: verify(unicode(u.encode(encoding),encoding) == u) - except AssertionError: + except TestFailed: print '*** codec "%s" failed round-trip' % encoding except ValueError,why: print '*** codec for "%s" failed: %s' % (encoding, why) @@ -454,7 +454,7 @@ for encoding in ( ): try: verify(unicode(u.encode(encoding),encoding) == u) - except AssertionError: + except TestFailed: print '*** codec "%s" failed round-trip' % encoding except ValueError,why: print '*** codec for "%s" failed: %s' % (encoding, why) @@ -488,7 +488,7 @@ for encoding in ( ): try: verify(unicode(s,encoding).encode(encoding) == s) - except AssertionError: + except TestFailed: print '*** codec "%s" failed round-trip' % encoding except ValueError,why: print '*** codec for "%s" failed: %s' % (encoding, why) @@ -518,7 +518,7 @@ for encoding in ( ): try: verify(unicode(s,encoding).encode(encoding) == s) - except AssertionError: + except TestFailed: print '*** codec "%s" failed round-trip' % encoding except ValueError,why: print '*** codec for "%s" failed: %s' % (encoding, why) |