From ffc967b47ab0c38c361ce7a60283ed0b8c618d81 Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Thu, 9 Dec 2010 14:57:34 -0500 Subject: Fix a slew of tests. - Skip the DNS tests if DNS isn't configured - Add new attributes to user entries (displayname, cn and initials) - Make the nsaccountlock value consistent - Fix the cert subject for cert tests --- tests/test_xmlrpc/test_cert.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/test_xmlrpc/test_cert.py') diff --git a/tests/test_xmlrpc/test_cert.py b/tests/test_xmlrpc/test_cert.py index 9ea1744a..2f83eead 100644 --- a/tests/test_xmlrpc/test_cert.py +++ b/tests/test_xmlrpc/test_cert.py @@ -92,7 +92,7 @@ class test_cert(XMLRPC_test): """ host_fqdn = u'ipatestcert.%s' % api.env.domain service_princ = u'test/%s@%s' % (host_fqdn, api.env.realm) - subject = 'CN=%s,O=IPA' % host_fqdn + subject = 'CN=%s,O=%s' % (host_fqdn, api.env.realm) def test_1_cert_add(self): """ -- cgit