Browse Source

Fix test_wrongServerResponses

Gabriel Féron 3 years ago
parent
commit
e26cf6f810
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/TestOAuth2.py

+ 1 - 1
tests/TestOAuth2.py

@@ -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: