]> granicus.if.org Git - python/commitdiff
Minor output message change
authorRoger E. Masse <rmasse@newcnri.cnri.reston.va.us>
Thu, 16 Jan 1997 18:53:01 +0000 (18:53 +0000)
committerRoger E. Masse <rmasse@newcnri.cnri.reston.va.us>
Thu, 16 Jan 1997 18:53:01 +0000 (18:53 +0000)
Lib/test/test_binascii.py
Lib/test/test_binhex.py

index 395da48b531f3ef7c99f9124b04ad9f39dd3bca2..aa156d966fa39df210752616006f37a99c54e4ef 100755 (executable)
@@ -33,8 +33,14 @@ def test():
     finish = f.readline()
 
     if start <> finish:
-       print 'Error: binhex failed'
+       print 'Error: binhex <> hexbin'
     elif verbose:
        print 'binhex == hexbin'
 
+    try:
+       import os
+       os.unlink(fname1)
+       os.unlink(fname2)
+    except:
+       pass
 test()
index 395da48b531f3ef7c99f9124b04ad9f39dd3bca2..aa156d966fa39df210752616006f37a99c54e4ef 100755 (executable)
@@ -33,8 +33,14 @@ def test():
     finish = f.readline()
 
     if start <> finish:
-       print 'Error: binhex failed'
+       print 'Error: binhex <> hexbin'
     elif verbose:
        print 'binhex == hexbin'
 
+    try:
+       import os
+       os.unlink(fname1)
+       os.unlink(fname2)
+    except:
+       pass
 test()