Skip to content

Commit bbace6e

Browse files
committed
Update testinfra/modules/group.py
1 parent bc42787 commit bbace6e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

testinfra/modules/group.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def gid(self):
3838
return int(self.check_output("getent group %s | cut -d':' -f3", self.name))
3939

4040
@property
41-
def user_list(self):
41+
def members(self):
4242
"""Return all users that are members of this group."""
4343
users = self.check_output("getent group %s | cut -d':' -f4", self.name)
4444
if users:

0 commit comments

Comments
 (0)