1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-05 20:58:40 +03:00

pytest/docs: better spelling of set_smbconf_arbitrary

Signed-off-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
Reviewed-by: Noel Power <npower@samba.org>

Autobuild-User(master): Noel Power <npower@samba.org>
Autobuild-Date(master): Mon Nov 22 11:18:09 UTC 2021 on sn-devel-184
This commit is contained in:
Douglas Bagnall 2021-11-19 16:16:30 +13:00 committed by Noel Power
parent b674c57a18
commit b5e0f33e82

View File

@ -62,7 +62,7 @@ def check_or_set_smbconf_default(cmdline, topdir, param, default_param):
return None
def set_smbconf_arbitary(cmdline, topdir, param, param_type, value_to_use):
def set_smbconf_arbitrary(cmdline, topdir, param, param_type, value_to_use):
p = subprocess.Popen(cmdline,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
@ -453,7 +453,7 @@ class SmbDotConfTests(TestCase):
"--option",
"%s = %s" % (param, value_to_use)]
future = executor.submit(set_smbconf_arbitary, cmdline, self.topdir, param, param_type, value_to_use)
future = executor.submit(set_smbconf_arbitrary, cmdline, self.topdir, param, param_type, value_to_use)
result_futures1.append(future)
opposite_value = opposite_arbitrary.get(param_type)