1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00

python:tests: Remove unused variable

assertMatch() returns None, which isn’t very useful.

Signed-off-by: Jo Sutton <josutton@catalyst.net.nz>
Reviewed-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
This commit is contained in:
Jo Sutton 2024-08-01 15:51:03 +12:00 committed by Douglas Bagnall
parent b6c25ed271
commit 20e841b793

View File

@ -332,7 +332,7 @@ class GroupCmdTestCase(SambaToolCmdTest):
for groupobj in grouplist:
name = str(groupobj.get("dn", idx=0))
found = self.assertMatch(out, name, "group '%s' not found" % name)
self.assertMatch(out, name, "group '%s' not found" % name)
def test_move(self):