summaryrefslogtreecommitdiff
path: root/Lib/test/test_rotor.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_rotor.py')
-rw-r--r--Lib/test/test_rotor.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_rotor.py b/Lib/test/test_rotor.py
index a5c02aa48d..28c5af5b1c 100644
--- a/Lib/test/test_rotor.py
+++ b/Lib/test/test_rotor.py
@@ -13,12 +13,12 @@ print `b`
A1 = r.decrypt(a)
print A1
-if A1 <> A:
+if A1 != A:
print 'decrypt failed'
B1 = r.decryptmore(b)
print B1
-if B1 <> B:
+if B1 != B:
print 'decryptmore failed'
try: