From: Andrew Bartlett Date: Tue, 3 Jul 2018 00:27:24 +0000 (+1200) Subject: selftest: Use self.account_lockout_duration in self.update_lockout_settings for passw... X-Git-Tag: tevent-0.9.37~89 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9ff1fa56f68044142b6664fd703ebbb3f53d4725;p=thirdparty%2Fsamba.git selftest: Use self.account_lockout_duration in self.update_lockout_settings for password_lockout tests This allows the account_lockout_duration and lockout_observation_window to be updated with longer values to cope with slower build servers. Signed-off-by: Andrew Bartlett Reviewed-by: Douglas Bagnall --- diff --git a/source4/dsdb/tests/python/password_lockout_base.py b/source4/dsdb/tests/python/password_lockout_base.py index 843eaff1ab2..de70140db5b 100644 --- a/source4/dsdb/tests/python/password_lockout_base.py +++ b/source4/dsdb/tests/python/password_lockout_base.py @@ -325,8 +325,9 @@ lockoutThreshold: """ + str(lockoutThreshold) + """ self.base_dn = self.ldb.domain_dn() self.account_lockout_duration = 2 self.lockout_observation_window = 2 - self.update_lockout_settings(threshold=3, duration=2, - observation_window=2) + self.update_lockout_settings(threshold=3, + duration=self.account_lockout_duration, + observation_window=self.lockout_observation_window) # update DC to allow password changes for the duration of this test self.allow_password_changes()