Skip to content

Commit

Permalink
Tests/ scripts do not directly call SlapdTestCase.setUpClass() anymore
Browse files Browse the repository at this point in the history
  • Loading branch information
stroeder committed Nov 16, 2017
1 parent 26c2564 commit 6c65d12
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Changes since 2.5.1:
Lib/

Tests/
*
* scripts do not directly call SlapdTestCase.setUpClass() anymore

----------------------------------------------------------------
Released 2.5.1 2017-11-12
Expand Down
2 changes: 1 addition & 1 deletion Tests/t_cext.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class TestLdapCExtension(SlapdTestCase):

@classmethod
def setUpClass(cls):
SlapdTestCase.setUpClass()
super(TestLdapCExtension, cls).setUpClass()
# add two initial objects after server was started and is still empty
suffix_dc = cls.server.suffix.split(',')[0][3:]
cls.server._log.debug(
Expand Down
2 changes: 1 addition & 1 deletion Tests/t_ldapobject.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ class Test01_SimpleLDAPObject(SlapdTestCase):

@classmethod
def setUpClass(cls):
SlapdTestCase.setUpClass()
super(Test01_SimpleLDAPObject, cls).setUpClass()
# insert some Foo* objects via ldapadd
cls.server.ldapadd(
LDIF_TEMPLATE % {
Expand Down

0 comments on commit 6c65d12

Please sign in to comment.