From: Andrew Bartlett Date: Tue, 3 Jul 2018 00:28:27 +0000 (+1200) Subject: selftest: Use a longer self.account_lockout_duration and self.lockout_observation_window X-Git-Tag: tevent-0.9.37~88 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f03364570fd96eca636a85019107e970065260b8;p=thirdparty%2Fsamba.git selftest: Use a longer self.account_lockout_duration and self.lockout_observation_window This matches the changes made in the PSO tests and slows down the whole testsuite but may make it more reliable on slower build hosts. Signed-off-by: Andrew Bartlett Reviewed-by: Douglas Bagnall Autobuild-User(master): Andrew Bartlett Autobuild-Date(master): Thu Jul 5 12:29:31 CEST 2018 on sn-devel-144 --- diff --git a/source4/dsdb/tests/python/password_lockout_base.py b/source4/dsdb/tests/python/password_lockout_base.py index de70140db5b..4a320684702 100644 --- a/source4/dsdb/tests/python/password_lockout_base.py +++ b/source4/dsdb/tests/python/password_lockout_base.py @@ -323,8 +323,8 @@ lockoutThreshold: """ + str(lockoutThreshold) + """ """) self.base_dn = self.ldb.domain_dn() - self.account_lockout_duration = 2 - self.lockout_observation_window = 2 + self.account_lockout_duration = 3 + self.lockout_observation_window = 3 self.update_lockout_settings(threshold=3, duration=self.account_lockout_duration, observation_window=self.lockout_observation_window)