Merge pull request #9702 from gferon/fix-auth-unit-test

Fix test_wrongServerResponses
This commit is contained in:
Jaime van Kessel 2021-04-26 14:43:34 +02:00 committed by GitHub
commit 703fee972a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -46,7 +46,7 @@ NO_REFRESH_AUTH_RESPONSE = AuthenticationResponse(
success = True
)
MALFORMED_AUTH_RESPONSE = AuthenticationResponse()
MALFORMED_AUTH_RESPONSE = AuthenticationResponse(success=False)
def test_cleanAuthService() -> None: