diff options
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 |