summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris McDonough <chrism@agendaless.com>2009-01-26 17:15:57 +0000
committerChris McDonough <chrism@agendaless.com>2009-01-26 17:15:57 +0000
commit13437c304ddb8812244c8e2131888efa68297d73 (patch)
tree5a44a0244360a6f5050fc13b325da79f909cf194
parent33689f132d8a3b14ff92785d201498c5a13f412d (diff)
downloadpyramid-13437c304ddb8812244c8e2131888efa68297d73.tar.gz
pyramid-13437c304ddb8812244c8e2131888efa68297d73.tar.bz2
pyramid-13437c304ddb8812244c8e2131888efa68297d73.zip
Coverage.
-rw-r--r--repoze/bfg/tests/test_security.py2
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')