This test really only tests the binhex module.
Renamed it and adapted a comment and an error message.
This commit is contained in:
parent
d5753e15e2
commit
7b8f1abfca
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue