From: Edward Z. Yang Date: Sat, 11 Jul 2009 21:10:14 +0000 (-0700) Subject: Correct the tests for afs.acl to match a function rename. X-Git-Tag: 0.1.0~22 X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/python-afs.git/commitdiff_plain/4fe604e594658d235ec360a29ca0222112fe9fd7?ds=inline Correct the tests for afs.acl to match a function rename. Signed-off-by: Evan Broder --- diff --git a/afs/tests/test_acl.py b/afs/tests/test_acl.py index c6a7338..aa4d1ae 100644 --- a/afs/tests/test_acl.py +++ b/afs/tests/test_acl.py @@ -4,10 +4,10 @@ import afs.acl as acl def test_showRights(): assert acl.showRights(acl.READ | acl.WRITE) == "rw" -def test_crights(): - assert acl.crights('read') & acl.READ - assert acl.crights('read') & acl.LOOKUP - assert not acl.crights('read') & acl.WRITE +def test_readRights(): + assert acl.readRights('read') & acl.READ + assert acl.readRights('read') & acl.LOOKUP + assert not acl.readRights('read') & acl.WRITE def test_retrieve(): assert acl.ACL.retrieve('/afs/athena.mit.edu/contrib/bitbucket2').pos['system:anyuser'] & acl.WRITE