Remove exit_on_error

Signed-off-by: Matthew Stidham <stidmatt@protonmail.com>
This commit is contained in:
Matthew Stidham
2021-03-17 15:19:34 -07:00
parent 3cc6bf099a
commit 052319d2ce
18 changed files with 17 additions and 27 deletions

View File

@@ -7,7 +7,7 @@ import time
class TestGroupProfile(LFCliBase):
def __init__(self, lfclient_host, lfclient_port, local_realm, test_group_name=None, debug_=False):
super().__init__(lfclient_host, lfclient_port, debug_, _halt_on_error=True)
super().__init__(lfclient_host, lfclient_port, debug_)
self.local_realm = local_realm
self.group_name = test_group_name
self.cx_list = []