e2e: only initialise selenium after setting up container

This commit is contained in:
Jens Langhammer
2020-07-10 16:49:25 +02:00
parent 111b037512
commit 40e794099a
5 changed files with 5 additions and 5 deletions

View File

@ -23,8 +23,8 @@ class TestFlowsEnroll(SeleniumTestCase):
"""Test Enroll flow"""
def setUp(self):
super().setUp()
self.container = self.setup_client()
super().setUp()
def setup_client(self) -> Container:
"""Setup test IdP container"""