From 3661908a6ac75026e4504d9f62a6ac2e2fb2ec5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc-Andr=C3=A9=20Lemburg?= Date: Wed, 17 Jan 2001 19:11:13 +0000 Subject: This patch removes all uses of "assert" in the regression test suite and replaces them with a new API verify(). As a result the regression suite will also perform its tests in optimization mode. Written by Marc-Andre Lemburg. Copyright assigned to Guido van Rossum. --- Lib/test/test_binascii.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'Lib/test/test_binascii.py') diff --git a/Lib/test/test_binascii.py b/Lib/test/test_binascii.py index 20f5400982..f03fc5566b 100755 --- a/Lib/test/test_binascii.py +++ b/Lib/test/test_binascii.py @@ -1,6 +1,6 @@ """Test the binascii C module.""" -from test_support import verbose +from test_support import verify, verbose import binascii # Show module doc string @@ -42,7 +42,7 @@ res = "" for line in lines: b = binascii.a2b_base64(line) res = res + b -assert res == testdata +verify(res == testdata) # Test base64 with random invalid characters sprinkled throughout # (This requires a new version of binascii.) @@ -67,7 +67,7 @@ res = "" for line in map(addnoise, lines): b = binascii.a2b_base64(line) res = res + b -assert res == testdata +verify(res == testdata) # Test uu print "uu test" @@ -82,7 +82,7 @@ res = "" for line in lines: b = binascii.a2b_uu(line) res = res + b -assert res == testdata +verify(res == testdata) # Test crc32() crc = binascii.crc32("Test the CRC-32 of") -- cgit v1.2.1