From: Douglas Bagnall Date: Sat, 27 Oct 2018 22:02:51 +0000 (+1300) Subject: tests/python/notification: safer use of super() X-Git-Tag: tdb-1.3.17~1046 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4e694079e5f3a662c678cce0e87769c62ddeefeb;p=thirdparty%2Fsamba.git tests/python/notification: safer use of super() Signed-off-by: Douglas Bagnall Reviewed-by: Noel Power --- diff --git a/source4/dsdb/tests/python/notification.py b/source4/dsdb/tests/python/notification.py index 72f511faafc..81be0e34b00 100755 --- a/source4/dsdb/tests/python/notification.py +++ b/source4/dsdb/tests/python/notification.py @@ -67,7 +67,7 @@ creds.set_gensec_features(creds.get_gensec_features() | gensec.FEATURE_SEAL) class LDAPNotificationTest(samba.tests.TestCase): def setUp(self): - super(samba.tests.TestCase, self).setUp() + super(LDAPNotificationTest, self).setUp() self.ldb = SamDB(url, credentials=creds, session_info=system_session(lp), lp=lp) self.base_dn = self.ldb.domain_dn()