diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2014-06-02 02:53:01 +0200 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2014-10-14 06:44:06 +0200 |
commit | 0c2408531709eb720a2e96f72afbc2ecbfe6b06d (patch) | |
tree | 119c0fdcd4da3f53f32a77f2e0389057e1ca9030 /python/samba/tests/samba3sam.py | |
parent | 9a014d265b4e134fb5cea12aaca88ba5eb91cc05 (diff) | |
download | samba-0c2408531709eb720a2e96f72afbc2ecbfe6b06d.tar.gz samba-0c2408531709eb720a2e96f72afbc2ecbfe6b06d.tar.xz samba-0c2408531709eb720a2e96f72afbc2ecbfe6b06d.zip |
Fix more pep8 issues in code I touched recently.
Signed-Off-By: Jelmer Vernooij <jelmer@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Change-Id: I35f3204bdf5d00b3280d703427ded2fa2163a6f7
Diffstat (limited to 'python/samba/tests/samba3sam.py')
-rw-r--r-- | python/samba/tests/samba3sam.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/python/samba/tests/samba3sam.py b/python/samba/tests/samba3sam.py index 7cd656670a..d4347cd52c 100644 --- a/python/samba/tests/samba3sam.py +++ b/python/samba/tests/samba3sam.py @@ -186,12 +186,12 @@ class Samba3SamTestCase(MapBaseTestCase): def test_s3sam_modify(self): # Adding a record that will be fallbacked - self.ldb.add({"dn": "cn=Foo", + self.ldb.add({ + "dn": "cn=Foo", "foo": "bar", "blah": "Blie", "cn": "Foo", - "showInAdvancedViewOnly": "TRUE"} - ) + "showInAdvancedViewOnly": "TRUE"}) # Checking for existence of record (local) # TODO: This record must be searched in the local database, which is |