<rotorobj>.setkey() now requires exactly one argument
diff --git a/Lib/test/test_rotor.py b/Lib/test/test_rotor.py
index 475ac16..338ea9d 100644
--- a/Lib/test/test_rotor.py
+++ b/Lib/test/test_rotor.py
@@ -21,5 +21,8 @@
 if B1 <> B:
     print 'decryptmore failed'
 
-r.setkey()
+try:
+    r.setkey()
+except TypeError:
+    pass
 r.setkey('you guessed it!')