Skip to content

Commit

Permalink
- fix super call for Python 2.7
Browse files Browse the repository at this point in the history
  • Loading branch information
dataflake committed Dec 17, 2022
1 parent 88aac86 commit 6fee886
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/App/tests/testManagement.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,14 +80,14 @@ def test_Tabs_content_type(self):
class TestManagePages(Testing.ZopeTestCase.ZopeTestCase):

def setUp(self):
super().setUp()
super(TestManagePages, self).setUp()
uf = self.folder.acl_users
uf.userFolderAddUser('mgr', 'foo', ['Manager'], [])
self.login('mgr')

def tearDown(self):
self.logout()
super().tearDown()
super(TestManagePages, self).tearDown()

def test_manage_content_type(self):
req = self.app.REQUEST
Expand Down

0 comments on commit 6fee886

Please sign in to comment.