diff options
Diffstat (limited to 'ipatests')
-rw-r--r-- | ipatests/test_xmlrpc/test_cert_plugin.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/ipatests/test_xmlrpc/test_cert_plugin.py b/ipatests/test_xmlrpc/test_cert_plugin.py index 2598e0b09..ab09d0aa4 100644 --- a/ipatests/test_xmlrpc/test_cert_plugin.py +++ b/ipatests/test_xmlrpc/test_cert_plugin.py @@ -166,8 +166,6 @@ class test_cert(XMLRPC_test): """ Verify that service-show has the right certificate using service-show. """ - global cert - res = api.Command['service_show'](self.service_princ)['result'] assert base64.b64encode(res['usercertificate'][0]) == cert @@ -175,8 +173,6 @@ class test_cert(XMLRPC_test): """ Verify that service-find has the right certificate using service-find. """ - global cert - # Assume there is only one service res = api.Command['service_find'](self.service_princ)['result'] assert base64.b64encode(res[0]['usercertificate'][0]) == cert @@ -210,8 +206,6 @@ class test_cert(XMLRPC_test): """ Verify the new certificate with service-show. """ - global cert, newcert - res = api.Command['service_show'](self.service_princ)['result'] # Both the old and the new certs should be listed as certificates now |