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 e31a919 commit 033e56dCopy full SHA for 033e56d
tests/test_models.py
@@ -72,7 +72,6 @@ def test_hashed_secret(self):
72
self.assertNotEqual(app.client_secret, CLEARTEXT_SECRET)
73
self.assertTrue(check_password(CLEARTEXT_SECRET, app.client_secret))
74
75
-
76
@override_settings(OAUTH2_PROVIDER={"CLIENT_SECRET_HASHER": "fast_pbkdf2"})
77
def test_hashed_from_settings(self):
78
app = Application.objects.create(
@@ -89,7 +88,6 @@ def test_hashed_from_settings(self):
89
88
self.assertIn("fast_pbkdf2", app.client_secret)
90
91
92
93
def test_unhashed_secret(self):
94
95
name="test_app",
0 commit comments