diff options
| author | Michael Merickel <michael@merickel.org> | 2019-12-30 13:29:25 -0600 |
|---|---|---|
| committer | Michael Merickel <michael@merickel.org> | 2019-12-30 13:29:25 -0600 |
| commit | 25439c2dbd4ff971e2a32ac96fc893de0bdcefd3 (patch) | |
| tree | 373621fc7f9e1239aa92782ee8fd733c3a512e1b /tests/pkgs | |
| parent | bd8f73be18f8f54daff34debd976a4b81be886aa (diff) | |
| download | pyramid-25439c2dbd4ff971e2a32ac96fc893de0bdcefd3.tar.gz pyramid-25439c2dbd4ff971e2a32ac96fc893de0bdcefd3.tar.bz2 pyramid-25439c2dbd4ff971e2a32ac96fc893de0bdcefd3.zip | |
rename identify(request) to authenticated_identity(request)
Diffstat (limited to 'tests/pkgs')
| -rw-r--r-- | tests/pkgs/securityapp/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/pkgs/securityapp/__init__.py b/tests/pkgs/securityapp/__init__.py index 6c9025e7d..facc37878 100644 --- a/tests/pkgs/securityapp/__init__.py +++ b/tests/pkgs/securityapp/__init__.py @@ -3,7 +3,7 @@ from pyramid.security import Allowed, Denied class SecurityPolicy: - def identify(self, request): + def authenticated_identity(self, request): raise NotImplementedError() # pragma: no cover def authenticated_userid(self, request): |
