diff options
| author | Joseph Sutton <josephsutton@catalyst.net.nz> | 2023-05-26 11:50:21 +1200 |
|---|---|---|
| committer | Andrew Bartlett <abartlet@samba.org> | 2023-05-29 22:32:28 +0000 |
| commit | 76e87c6262d73f66f5b2b46204d6aef7526ffa32 (patch) | |
| tree | a82fe3101ac420f1e5db219cf3e200474601d79a /python/samba | |
| parent | a05a9a3e780e868fe717d03c81d38fe1356b69af (diff) | |
| download | samba-76e87c6262d73f66f5b2b46204d6aef7526ffa32.tar.gz samba-76e87c6262d73f66f5b2b46204d6aef7526ffa32.tar.bz2 samba-76e87c6262d73f66f5b2b46204d6aef7526ffa32.zip | |
tests/audit_log: Add missing call to tearDown()
Signed-off-by: Joseph Sutton <josephsutton@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'python/samba')
| -rw-r--r-- | python/samba/tests/audit_log_base.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/python/samba/tests/audit_log_base.py b/python/samba/tests/audit_log_base.py index 50b941270fe..73d0d8e306c 100644 --- a/python/samba/tests/audit_log_base.py +++ b/python/samba/tests/audit_log_base.py @@ -131,6 +131,8 @@ class AuditLogTestBase(samba.tests.TestCase): self.msg_ctx.deregister(self.auth_handler_and_context, msg_type=MSG_AUTH_LOG) + super().tearDown() + def haveExpected(self, expected, dn): if dn is None: return len(self.context["messages"]) >= expected |
