muting unneeded check

This commit is contained in:
Matthias 2021-09-08 00:16:51 +02:00
parent 30c98b828e
commit ff98c87311
No known key found for this signature in database
GPG Key ID: F50EF5741D33E076

View File

@ -111,7 +111,8 @@ class URLTest(TestCase):
if url.startswith("admin:"): if url.startswith("admin:"):
return return
if url.startswith("account:"): # TODO can this be more elegant?
if url == 'account_reset_password':
return return
if pk: if pk: