Fix test_wrongServerResponses

This commit is contained in:
Gabriel Féron 2021-04-26 11:07:11 +02:00
parent 1a79580227
commit e26cf6f810

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: