summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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')