This is an automated email from the git hooks/post-receive script.
mreynolds pushed a change to branch master in repository 389-ds-base.
from 56055da Issue 49159 - test_schema_comparewithfiles fails with python-ldap>=2.4.26 new f51305f Issue 47536 - Fix CI testcase
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: dirsrvtests/tests/tickets/ticket47536_test.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)
This is an automated email from the git hooks/post-receive script.
mreynolds pushed a commit to branch master in repository 389-ds-base.
commit f51305f5a6739c20d95bdbce98baa26f6cebf844 Author: Mark Reynolds mreynolds@redhat.com Date: Wed Mar 8 15:08:59 2017 -0500
Issue 47536 - Fix CI testcase
Description: The test was failing because we were not generating server certs using the fqdn\
https://pagure.io/389-ds-base/issue/47536
Reviewed by: viktor(Thanks!) --- dirsrvtests/tests/tickets/ticket47536_test.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/dirsrvtests/tests/tickets/ticket47536_test.py b/dirsrvtests/tests/tickets/ticket47536_test.py index b5ec020..ef9817f 100644 --- a/dirsrvtests/tests/tickets/ticket47536_test.py +++ b/dirsrvtests/tests/tickets/ticket47536_test.py @@ -7,7 +7,7 @@ # --- END COPYRIGHT BLOCK --- # import base64 - +import os import pytest from lib389.tasks import * from lib389.utils import * @@ -28,8 +28,8 @@ M1SERVERCERT = 'Server-Cert1' M2SERVERCERT = 'Server-Cert2' M1LDAPSPORT = '41636' M2LDAPSPORT = '42636' -M1SUBJECT = 'CN={},OU=389 Directory Server'.format(HOST_MASTER_1) -M2SUBJECT = 'CN={},OU=390 Directory Server'.format(HOST_MASTER_2) +M1SUBJECT = 'CN=' + os.uname()[1] + ',OU=389 Directory Server' +M2SUBJECT = 'CN=' + os.uname()[1] + ',OU=390 Directory Server'
def add_entry(server, name, rdntmpl, start, num):
389-commits@lists.fedoraproject.org