Correct the rm_group command in testgroup.py

Signed-off-by: Matthew Stidham <stidmatt@protonmail.com>
This commit is contained in:
Matthew Stidham
2021-02-24 13:57:00 -08:00
parent c1537145e8
commit 1ff7b5df50

View File

@@ -64,7 +64,7 @@ class TestGroup(LFCliBase):
if self.tg_action == 'del': if self.tg_action == 'del':
print("Removing %s" % self.tg_profile.group_name) print("Removing %s" % self.tg_profile.group_name)
if self.tg_profile.check_group_exists(): if self.tg_profile.check_group_exists():
self.tg_profile.remove_group() self.tg_profile.rm_group()
else: else:
print("%s not found, no action taken" % self.tg_profile.group_name) print("%s not found, no action taken" % self.tg_profile.group_name)