Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGabriel Féron <g@leirbag.net>2021-04-26 12:07:11 +0300
committerGabriel Féron <g@leirbag.net>2021-04-26 12:07:11 +0300
commite26cf6f8102b5d7010a74b9257007d34e70b9ea8 (patch)
treec47d89139c20064943d2c5cce82c9d00ea04ae1d /tests/TestOAuth2.py
parent1a795802275bac4df5be74370c0cc79e895c26b4 (diff)
Fix test_wrongServerResponses
Diffstat (limited to 'tests/TestOAuth2.py')
-rw-r--r--tests/TestOAuth2.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/TestOAuth2.py b/tests/TestOAuth2.py
index 6b7e28917f..731a31690a 100644
--- a/tests/TestOAuth2.py
+++ b/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: