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",
|
name="default-authentication-identification",
|
||||||
defaults={
|
defaults={
|
||||||
"user_fields": [UserFields.E_MAIL, UserFields.USERNAME],
|
"user_fields": [UserFields.E_MAIL, UserFields.USERNAME],
|
||||||
"template": "",
|
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -153,7 +153,7 @@ class SeleniumTestCase(StaticLiveServerTestCase):
|
||||||
ObjectManager().run()
|
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"""
|
"""Retry test multiple times. Default to catching Selenium Timeout Exception"""
|
||||||
|
|
||||||
if not exceptions:
|
if not exceptions:
|
||||||
|
|
Reference in New Issue