diff options
| author | Michael Merickel <michael@merickel.org> | 2020-11-01 18:15:49 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-01 18:15:49 -0600 |
| commit | 68a6cb1dba7944f1e214ca62ce700e3f7ddf618d (patch) | |
| tree | a1d646c7feefb9a28347b9826829d4ad59730c46 /tests/pkgs/securityapp | |
| parent | c6772eadc18056b5eed90f6a694e53579ba403a4 (diff) | |
| parent | 139462d451a1c35679b464690953333dd95389a1 (diff) | |
| download | pyramid-68a6cb1dba7944f1e214ca62ce700e3f7ddf618d.tar.gz pyramid-68a6cb1dba7944f1e214ca62ce700e3f7ddf618d.tar.bz2 pyramid-68a6cb1dba7944f1e214ca62ce700e3f7ddf618d.zip | |
Merge pull request #3620 from luhn/identity-rename
Rename `ISecurityPolicy.authenticated_identity` to `identity`
Diffstat (limited to 'tests/pkgs/securityapp')
| -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 facc37878..c5b713f23 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 authenticated_identity(self, request): + def identity(self, request): raise NotImplementedError() # pragma: no cover def authenticated_userid(self, request): |
