From 2b558f2096410b1afd2a6d5bde2862b4cc4fd587 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Mon, 31 Mar 2014 20:47:18 +1300 Subject: selftest: Set winbind separator = / This avoids a pile of shell-script escape pain, and fixes some tests. Andrew Bartlett Change-Id: Ie1d0e32ab484a5b0ddbc4073831fe6de27e38e92 Signed-off-by: Andrew Bartlett Reviewed-by: Andreas Schneider --- source3/script/tests/test_wbinfo_sids2xids_int.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/script') diff --git a/source3/script/tests/test_wbinfo_sids2xids_int.py b/source3/script/tests/test_wbinfo_sids2xids_int.py index 1b79e005dce..e9cd9abc69a 100755 --- a/source3/script/tests/test_wbinfo_sids2xids_int.py +++ b/source3/script/tests/test_wbinfo_sids2xids_int.py @@ -15,7 +15,7 @@ def flush_cache(): domain = subprocess.Popen([wbinfo, "--own-domain"], stdout=subprocess.PIPE).communicate()[0].strip() -domsid = subprocess.Popen([wbinfo, "-n", domain + "\\"], +domsid = subprocess.Popen([wbinfo, "-n", domain + "/"], stdout=subprocess.PIPE).communicate()[0] domsid = domsid.split(' ')[0] -- cgit