mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-15 02:37:49 -06:00
Fix failing test
CURA-8441
This commit is contained in:
parent
5bf24ed678
commit
3be4b1a441
1 changed files with 2 additions and 2 deletions
|
@ -238,7 +238,7 @@ def test__generate_auth_url() -> None:
|
||||||
"response_type": "code"
|
"response_type": "code"
|
||||||
}
|
}
|
||||||
auth_url = authorization_service._generate_auth_url(query_parameters_dict, force_browser_logout = False)
|
auth_url = authorization_service._generate_auth_url(query_parameters_dict, force_browser_logout = False)
|
||||||
assert MYCLOUD_LOGOFF_URL + "?next=" not in auth_url
|
assert MYCLOUD_LOGOFF_URL + "&next=" not in auth_url
|
||||||
|
|
||||||
auth_url = authorization_service._generate_auth_url(query_parameters_dict, force_browser_logout = True)
|
auth_url = authorization_service._generate_auth_url(query_parameters_dict, force_browser_logout = True)
|
||||||
assert MYCLOUD_LOGOFF_URL + "?next=" in auth_url
|
assert MYCLOUD_LOGOFF_URL + "&next=" in auth_url
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue