From: Joe Guo Date: Wed, 4 Jul 2018 02:52:02 +0000 (+1200) Subject: tests/posixacl: rm commented code X-Git-Tag: tdb-1.3.16~19 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cd9f6c5f74b7f4d5da0e2d892ac1d8b57ddd96f8;p=thirdparty%2Fsamba.git tests/posixacl: rm commented code The example is already in code, no need to keep it here. BUG: https://bugzilla.samba.org/show_bug.cgi?id=13521 Signed-off-by: Joe Guo Reviewed-by: Andrew Bartlett Reviewed-by: Gary Lockyer --- diff --git a/python/samba/tests/posixacl.py b/python/samba/tests/posixacl.py index 74cabf1bb70..38f578e0d35 100644 --- a/python/samba/tests/posixacl.py +++ b/python/samba/tests/posixacl.py @@ -28,14 +28,6 @@ import os from samba.samba3 import smbd, passdb from samba.samba3 import param as s3param -# To print a posix ACL use: -# for entry in posix_acl.acl: -# print "a_type: %d" % entry.a_type -# print "a_perm: %o" % entry.a_perm -# if entry.a_type == smb_acl.SMB_ACL_USER: -# print "uid: %d" % entry.uid -# if entry.a_type == smb_acl.SMB_ACL_GROUP: -# print "gid: %d" % entry.gid class PosixAclMappingTests(TestCaseInTempDir):