mirror of
https://github.com/samba-team/samba.git
synced 2025-08-04 08:22:08 +03:00
PEP8: fix E123: closing bracket does not match indentation of opening bracket's line
Signed-off-by: Joe Guo <joeg@catalyst.net.nz> Reviewed-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
This commit is contained in:
@ -1731,7 +1731,7 @@ class SamTests(samba.tests.TestCase):
|
||||
"sAMAccountName": username,
|
||||
"userAccountControl": str(UF_NORMAL_ACCOUNT),
|
||||
"unicodePwd": utf16pw,
|
||||
})
|
||||
})
|
||||
|
||||
res1 = ldb.search("cn=ldaptestuser,cn=users," + self.base_dn,
|
||||
scope=SCOPE_BASE,
|
||||
@ -2553,7 +2553,7 @@ class SamTests(samba.tests.TestCase):
|
||||
"objectclass": "user",
|
||||
"userAccountControl": str(UF_NORMAL_ACCOUNT),
|
||||
"unicodePwd": "\"thatsAcomplPASS2\"".encode('utf-16-le')
|
||||
})
|
||||
})
|
||||
|
||||
res = ldb.search("cn=ldaptestuser,cn=users," + self.base_dn,
|
||||
scope=SCOPE_BASE,
|
||||
@ -2656,7 +2656,7 @@ class SamTests(samba.tests.TestCase):
|
||||
"dn": "cn=ldaptestuser,cn=users," + self.base_dn,
|
||||
"objectclass": "user",
|
||||
"userAccountControl": str(UF_NORMAL_ACCOUNT|UF_ACCOUNTDISABLE),
|
||||
})
|
||||
})
|
||||
|
||||
res = ldb.search("cn=ldaptestuser,cn=users," + self.base_dn,
|
||||
scope=SCOPE_BASE,
|
||||
@ -2804,7 +2804,7 @@ class SamTests(samba.tests.TestCase):
|
||||
"dn": "cn=ldaptestuser,cn=users," + self.base_dn,
|
||||
"objectclass": "user",
|
||||
"userAccountControl": str(UF_NORMAL_ACCOUNT|UF_SMARTCARD_REQUIRED|UF_ACCOUNTDISABLE),
|
||||
})
|
||||
})
|
||||
|
||||
res = ldb.search("cn=ldaptestuser,cn=users," + self.base_dn,
|
||||
scope=SCOPE_BASE,
|
||||
@ -3678,7 +3678,7 @@ class SamTests(samba.tests.TestCase):
|
||||
["CN=Enterprise Admins","CN=Users,"],
|
||||
["CN=Administrator","CN=Users,"],
|
||||
["CN=Domain Controllers","CN=Users,"],
|
||||
]
|
||||
]
|
||||
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user