diff options
| author | Chris McDonough <chrism@agendaless.com> | 2009-01-26 17:15:57 +0000 |
|---|---|---|
| committer | Chris McDonough <chrism@agendaless.com> | 2009-01-26 17:15:57 +0000 |
| commit | 13437c304ddb8812244c8e2131888efa68297d73 (patch) | |
| tree | 5a44a0244360a6f5050fc13b325da79f909cf194 | |
| parent | 33689f132d8a3b14ff92785d201498c5a13f412d (diff) | |
| download | pyramid-13437c304ddb8812244c8e2131888efa68297d73.tar.gz pyramid-13437c304ddb8812244c8e2131888efa68297d73.tar.bz2 pyramid-13437c304ddb8812244c8e2131888efa68297d73.zip | |
Coverage.
| -rw-r--r-- | repoze/bfg/tests/test_security.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/repoze/bfg/tests/test_security.py b/repoze/bfg/tests/test_security.py index 69b92cd2f..b8a49f39f 100644 --- a/repoze/bfg/tests/test_security.py +++ b/repoze/bfg/tests/test_security.py @@ -217,7 +217,7 @@ class TestACLSecurityPolicy(unittest.TestCase): from repoze.bfg.security import Allow context = DummyContext() acl = [ (Allow, 'chrism', ('read', 'write')), - (Allow, 'other', ('read',)) ] + (Allow, 'other', 'read') ] context.__acl__ = acl policy = self._makeOne(lambda *arg: None) result = policy.principals_allowed_by_permission(context, 'read') |
