Commit 45cd9caf authored by Łukasz Nowak's avatar Łukasz Nowak

Fixup: Always call mixin's setup.

parent 2b8177fd
......@@ -15,6 +15,7 @@ class TestSlapOSCorePersonComputerSupply(testSlapOSMixin):
return 'http://example.org/test%s.cfg' % self.generateNewId()
def afterSetUp(self):
super(TestSlapOSCorePersonComputerSupply, self).afterSetUp()
portal = self.getPortalObject()
new_id = self.generateNewId()
......
......@@ -14,6 +14,7 @@ class TestSlapOSCorePersonRequest(testSlapOSMixin):
return 'http://example.org/test%s.cfg' % self.generateNewId()
def afterSetUp(self):
super(TestSlapOSCorePersonRequest, self).afterSetUp()
portal = self.getPortalObject()
new_id = self.generateNewId()
......
......@@ -13,6 +13,7 @@ class TestSlapOSCorePersonRequestComputer(testSlapOSMixin):
return 'My Comp %s' % self.generateNewId()
def afterSetUp(self):
super(TestSlapOSCorePersonRequestComputer, self).afterSetUp()
portal = self.getPortalObject()
new_id = self.generateNewId()
......
114
\ No newline at end of file
115
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment