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 d4e51ea commit c30b2cbCopy full SHA for c30b2cb
tests/test_auth.py
@@ -219,6 +219,7 @@ def test_oauth_start(self):
219
"Authorization": "Basic ZHVtbXk6",
220
},
221
params={"provider": "facebook"},
222
+ allow_redirects=False,
223
)
224
225
def test_get_identifier_name_by_method(self):
@@ -326,6 +327,8 @@ def test_logout(self):
326
327
dummy_valid_jwt_token = ""
328
client = AuthClient(self.dummy_project_id, self.public_key_dict)
329
330
+ self.assertRaises(AuthException, client.logout, None, None)
331
+
332
# Test failed flow
333
with patch("requests.get") as mock_get:
334
mock_get.return_value.ok = False
0 commit comments