flows: fix migration for e2e tests

This commit is contained in:
Jens Langhammer 2021-02-21 20:47:23 +01:00
parent 6df89e7abf
commit 0904fea109
2 changed files with 1 additions and 2 deletions

View File

@ -26,7 +26,6 @@ def create_default_authentication_flow(
name="default-authentication-identification",
defaults={
"user_fields": [UserFields.E_MAIL, UserFields.USERNAME],
"template": "",
},
)

View File

@ -153,7 +153,7 @@ class SeleniumTestCase(StaticLiveServerTestCase):
ObjectManager().run()
def retry(max_retires=1, exceptions=None):
def retry(max_retires=3, exceptions=None):
"""Retry test multiple times. Default to catching Selenium Timeout Exception"""
if not exceptions: