We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5cd241d commit fe0f957Copy full SHA for fe0f957
tests/test_application.py
@@ -74,7 +74,7 @@ def test_unknown_orphan_app_will_attempt_frt_and_not_remove_it(self):
74
logger.debug("%s.cache = %s", self.id(), self.cache.serialize())
75
def tester(url, data=None, **kwargs):
76
self.assertEqual(self.frt, data.get("refresh_token"), "Should attempt the FRT")
77
- return Mock(status_code=200, json=Mock(return_value={
+ return Mock(status_code=400, json=Mock(return_value={
78
"error": "invalid_grant",
79
"error_description": "Was issued to another client"}))
80
app._acquire_token_silent_by_finding_rt_belongs_to_me_or_my_family(
0 commit comments