Skip to content

Commit 033e56d

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent e31a919 commit 033e56d

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

tests/test_models.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@ def test_hashed_secret(self):
7272
self.assertNotEqual(app.client_secret, CLEARTEXT_SECRET)
7373
self.assertTrue(check_password(CLEARTEXT_SECRET, app.client_secret))
7474

75-
7675
@override_settings(OAUTH2_PROVIDER={"CLIENT_SECRET_HASHER": "fast_pbkdf2"})
7776
def test_hashed_from_settings(self):
7877
app = Application.objects.create(
@@ -89,7 +88,6 @@ def test_hashed_from_settings(self):
8988
self.assertIn("fast_pbkdf2", app.client_secret)
9089
self.assertTrue(check_password(CLEARTEXT_SECRET, app.client_secret))
9190

92-
9391
def test_unhashed_secret(self):
9492
app = Application.objects.create(
9593
name="test_app",

0 commit comments

Comments
 (0)