tests: adapt oidc authorization code sso to new default timeout value (#30939)

This commit is contained in:
Frédéric Péters 2019-03-02 07:38:22 +01:00
parent a486586bed
commit c63b9f0a26
1 changed files with 1 additions and 1 deletions

View File

@ -307,7 +307,7 @@ def test_authorization_code_sso(login_first, oidc_settings, oidc_client, simple_
if oidc_client.frontchannel_timeout:
assert iframes.attr('onload').endswith(', %d)' % oidc_client.frontchannel_timeout)
else:
assert iframes.attr('onload').endswith(', 10000)')
assert iframes.attr('onload').endswith(', 300)')
def assert_oidc_error(response, error, error_description=None, fragment=False):