summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_binhex.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_binhex.py')
-rwxr-xr-xLib/test/test_binhex.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_binhex.py b/Lib/test/test_binhex.py
index 68012f8..4dfe14e 100755
--- a/Lib/test/test_binhex.py
+++ b/Lib/test/test_binhex.py
@@ -32,8 +32,8 @@ def test():
f = open(fname1, 'r')
finish = f.readline()
- if start <> finish:
- print 'Error: binhex <> hexbin'
+ if start != finish:
+ print 'Error: binhex != hexbin'
elif verbose:
print 'binhex == hexbin'