Fixed #32003 -- Added obj argument to has_perm() methods in tests.

This commit is contained in:
Alexander Todorov 2020-09-14 13:28:17 +03:00 committed by GitHub
parent bcc2befd0e
commit 5fab16392f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 8 additions and 8 deletions

View file

@ -15,7 +15,7 @@ class MockRequest:
class MockSuperUser:
def has_perm(self, perm):
def has_perm(self, perm, obj=None):
return True
def has_module_perms(self, module):