summaryrefslogtreecommitdiffstats
path: root/src/tests/intg/ldap_test.py
diff options
context:
space:
mode:
authorLukas Slebodnik <lslebodn@redhat.com>2015-10-23 08:52:49 +0200
committerLukas Slebodnik <lslebodn@redhat.com>2015-10-26 07:15:26 +0100
commit46c89176fd7f140d785bbdc399a94daca269172e (patch)
treea872ab074e900b034597467f4dbbf61a7cf04118 /src/tests/intg/ldap_test.py
parente563de9203be581acc30c7794f568ae40d22bee0 (diff)
downloadsssd-46c89176fd7f140d785bbdc399a94daca269172e.tar.gz
sssd-46c89176fd7f140d785bbdc399a94daca269172e.tar.xz
sssd-46c89176fd7f140d785bbdc399a94daca269172e.zip
intg_tests: Fix PEP8 warnings
Reviewed-by: Michal Židek <mzidek@redhat.com>
Diffstat (limited to 'src/tests/intg/ldap_test.py')
-rw-r--r--src/tests/intg/ldap_test.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/tests/intg/ldap_test.py b/src/tests/intg/ldap_test.py
index 6a09b3725..6d61726b8 100644
--- a/src/tests/intg/ldap_test.py
+++ b/src/tests/intg/ldap_test.py
@@ -39,8 +39,10 @@ LDAP_BASE_DN = "dc=example,dc=com"
def ds_inst(request):
"""LDAP server instance fixture"""
ds_inst = ds_openldap.DSOpenLDAP(
- config.PREFIX, 10389, LDAP_BASE_DN,
- "cn=admin", "Secret123")
+ config.PREFIX, 10389, LDAP_BASE_DN,
+ "cn=admin", "Secret123"
+ )
+
try:
ds_inst.setup()
except: