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

@ -40,8 +40,8 @@ class TestSourceSAML(SeleniumTestCase):
"""test SAML Source flow"""
def setUp(self):
super().setUp()
self.container = self.setup_client()
super().setUp()
def setup_client(self) -> Container:
"""Setup test IdP container"""