diff options
author | Kamen Mazdrashki <kamenim@samba.org> | 2014-10-26 03:42:45 +0100 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2015-02-03 05:02:10 +0100 |
commit | 7d2247939cf0c4026480f35301eab648681948ac (patch) | |
tree | 58aa343f4869b98fc60a353e8cf58470f3a80e0b /source4/dsdb | |
parent | 5aaa33694aa12ba61f608db55950d38d5a50a36c (diff) | |
download | samba-7d2247939cf0c4026480f35301eab648681948ac.tar.gz samba-7d2247939cf0c4026480f35301eab648681948ac.tar.xz samba-7d2247939cf0c4026480f35301eab648681948ac.zip |
s4-dsdb-tests: Remove trailing ';' in deletetest.py
Change-Id: Ic1ad6bbda55be56cbf7ae78a8ad988b8e479a40c
Signed-off-by: Kamen Mazdrashki <kamenim@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Garming Sam <garming@catalyst.net.nz>
Diffstat (limited to 'source4/dsdb')
-rwxr-xr-x | source4/dsdb/tests/python/deletetest.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/dsdb/tests/python/deletetest.py b/source4/dsdb/tests/python/deletetest.py index cb08db404d..8833d32ac0 100755 --- a/source4/dsdb/tests/python/deletetest.py +++ b/source4/dsdb/tests/python/deletetest.py @@ -528,10 +528,10 @@ class BasicUndeleteTests(BaseDeleteTests): def test_undelete_cross_nc(self): print "Cross NC undelete" - c1 = "cn=ldaptestcontainer," + self.base_dn; + c1 = "cn=ldaptestcontainer," + self.base_dn c2 = "cn=ldaptestcontainer2," + self.configuration_dn c3 = "cn=ldaptestcontainer," + self.configuration_dn - c4 = "cn=ldaptestcontainer2," + self.base_dn; + c4 = "cn=ldaptestcontainer2," + self.base_dn ldb.add({ "dn": c1, "objectclass": "container"}) |