1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-02 09:47:23 +03:00

python/samba/tests: Fix incorrect superclass in test_min_domain_uid.py

This was not intentional as far as can be determined.

Signed-off-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
This commit is contained in:
Andrew Bartlett 2023-11-30 13:28:56 +13:00
parent 42e7828563
commit 0f2ff51a4b

View File

@ -39,7 +39,7 @@ class SmbMinDomainUid(KDCBaseTest):
"""
def setUp(self):
super(KDCBaseTest, self).setUp()
super().setUp()
# Create a user account, along with a Kerberos credentials cache file
# where the service ticket authenticating the user are stored.
@ -115,7 +115,7 @@ class SmbMinDomainUid(KDCBaseTest):
with open(self.global_inject, 'w') as f:
f.truncate()
super(KDCBaseTest, self).tearDown()
super().tearDown()
if __name__ == "__main__":
import unittest