mirror of
https://github.com/jazzband/django-defender.git
synced 2026-03-16 22:10:32 +00:00
Remove obsolete comments
This commit is contained in:
parent
a3207d582a
commit
64736040af
1 changed files with 0 additions and 2 deletions
|
|
@ -83,7 +83,6 @@ class AccessAttemptTest(DefenderTestCase):
|
|||
for ip in data_in:
|
||||
utils.block_ip(ip)
|
||||
data_out = utils.get_blocked_ips()
|
||||
# values stored are unique, so we can use set()
|
||||
self.assertEqual(sorted(data_in), sorted(data_out))
|
||||
|
||||
def test_data_integrity_of_get_blocked_usernames(self):
|
||||
|
|
@ -94,7 +93,6 @@ class AccessAttemptTest(DefenderTestCase):
|
|||
for username in data_in:
|
||||
utils.block_username(username)
|
||||
data_out = utils.get_blocked_usernames()
|
||||
# values stored are unique, so we can use set()
|
||||
self.assertEqual(sorted(data_in), sorted(data_out))
|
||||
|
||||
def test_login_get(self):
|
||||
|
|
|
|||
Loading…
Reference in a new issue