flows: fix migration for e2e tests
This commit is contained in:
parent
6df89e7abf
commit
0904fea109
|
@ -26,7 +26,6 @@ def create_default_authentication_flow(
|
|||
name="default-authentication-identification",
|
||||
defaults={
|
||||
"user_fields": [UserFields.E_MAIL, UserFields.USERNAME],
|
||||
"template": "",
|
||||
},
|
||||
)
|
||||
|
||||
|
|
|
@ -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:
|
||||
|
|
Reference in New Issue