summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorJoe Guo <joeg@catalyst.net.nz>2018-07-30 18:16:43 +1200
committerDouglas Bagnall <dbagnall@samba.org>2018-08-24 07:49:27 +0200
commita9551edaeebdb2e8c209a843bae7088e60946e96 (patch)
treef27c3090e881ab00c9af974143d826a989d4d770 /source3
parent944d70435e4859a626b875c18535c1adb7c3e66f (diff)
downloadsamba-a9551edaeebdb2e8c209a843bae7088e60946e96.tar.gz
PEP8: fix E201: whitespace after '('
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>
Diffstat (limited to 'source3')
-rwxr-xr-xsource3/script/tests/test_wbinfo_sids2xids_int.py2
-rwxr-xr-xsource3/selftest/tests.py12
2 files changed, 7 insertions, 7 deletions
diff --git a/source3/script/tests/test_wbinfo_sids2xids_int.py b/source3/script/tests/test_wbinfo_sids2xids_int.py
index 2c8920c44d1..6999142cefd 100755
--- a/source3/script/tests/test_wbinfo_sids2xids_int.py
+++ b/source3/script/tests/test_wbinfo_sids2xids_int.py
@@ -35,7 +35,7 @@ domsid = domsid.split(' ')[0]
#print domain
#print domsid
-sids=[ domsid + '-512', 'S-1-5-32-545', domsid + '-513', 'S-1-1-0', 'S-1-3-1', 'S-1-5-1' ]
+sids=[domsid + '-512', 'S-1-5-32-545', domsid + '-513', 'S-1-1-0', 'S-1-3-1', 'S-1-5-1' ]
flush_cache(sids=sids)
diff --git a/source3/selftest/tests.py b/source3/selftest/tests.py
index bbadeb1a321..e0df940f0dc 100755
--- a/source3/selftest/tests.py
+++ b/source3/selftest/tests.py
@@ -225,19 +225,19 @@ env = "ad_member"
t = "--krb5auth=$DOMAIN/$DC_USERNAME%$DC_PASSWORD"
plantestsuite("samba3.wbinfo_simple.(%s:local).%s" % (env, t), "%s:local" % env, [os.path.join(srcdir(), "nsswitch/tests/test_wbinfo_simple.sh"), t])
plantestsuite("samba3.wbinfo_name_lookup", env,
- [ os.path.join(srcdir(),
+ [os.path.join(srcdir(),
"nsswitch/tests/test_wbinfo_name_lookup.sh"),
'$DOMAIN', '$REALM', '$DC_USERNAME' ])
env = "ad_member:local"
plantestsuite("samba3.wbinfo_user_info", env,
- [ os.path.join(srcdir(),
+ [os.path.join(srcdir(),
"nsswitch/tests/test_wbinfo_user_info.sh"),
'$DOMAIN', '$REALM', '$DOMAIN', 'alice', 'alice', 'jane', 'jane.doe' ])
env = "fl2008r2dc:local"
plantestsuite("samba3.wbinfo_user_info", env,
- [ os.path.join(srcdir(),
+ [os.path.join(srcdir(),
"nsswitch/tests/test_wbinfo_user_info.sh"),
'$TRUST_DOMAIN', '$TRUST_REALM', '$DOMAIN', 'alice', 'alice', 'jane', 'jane.doe' ])
@@ -634,15 +634,15 @@ plantestsuite("samba3.blackbox.sharesec", "simpleserver:local",
configuration, os.path.join(bindir(), "sharesec"), "tmp"])
plantestsuite("samba3.blackbox.net_tdb", "simpleserver:local",
- [ os.path.join(samba3srcdir, "script/tests/test_net_tdb.sh"),
+ [os.path.join(samba3srcdir, "script/tests/test_net_tdb.sh"),
smbclient3, '$SERVER', 'tmp', '$USERNAME', '$PASSWORD',
configuration, '$LOCAL_PATH', '$LOCK_DIR' ])
plantestsuite("samba3.blackbox.smbd_error", "simpleserver:local",
- [ os.path.join(samba3srcdir, "script/tests/test_smbd_error.sh") ])
+ [os.path.join(samba3srcdir, "script/tests/test_smbd_error.sh") ])
plantestsuite("samba3.blackbox.net_cache_samlogon", "ad_member:local",
- [ os.path.join(samba3srcdir, "script/tests/test_net_cache_samlogon.sh"),
+ [os.path.join(samba3srcdir, "script/tests/test_net_cache_samlogon.sh"),
'$SERVER', 'tmp', '$DC_USERNAME', '$DC_PASSWORD'])
plantestsuite("samba3.blackbox.net_dom_join_fail_dc", "nt4_dc",