]> granicus.if.org Git - python/commitdiff
This test really only tests the binhex module.
authorGuido van Rossum <guido@python.org>
Tue, 19 Oct 1999 17:48:54 +0000 (17:48 +0000)
committerGuido van Rossum <guido@python.org>
Tue, 19 Oct 1999 17:48:54 +0000 (17:48 +0000)
Renamed it and adapted a comment and an error message.

Lib/test/test_binhex.py

index fe3843d88f8655fe87d33f11ec109f376664b726..534fa73d3df48d620e7528d0393460a29307427c 100755 (executable)
@@ -1,5 +1,5 @@
 #! /usr/bin/env python
-"""Test script for the binascii C module
+"""Test script for the binhex C module
 
    Uses the mechanism of the python binhex module
    Roger E. Masse
@@ -15,7 +15,7 @@ def test():
         fname2 = tempfile.mktemp()
         f = open(fname1, 'w')
     except:
-        raise ImportError, "Cannot test binascii without a temp file"
+        raise ImportError, "Cannot test binhex without a temp file"
 
     start = 'Jack is my hero'
     f.write(start)