test suite: group_mgr initialization fix
This commit is contained in:
parent
6e5e32f148
commit
b3bc4c5215
1 changed files with 1 additions and 1 deletions
|
|
@ -108,7 +108,7 @@ class CmdGroupMgr:
|
|||
return [k for k, v in cfgs[str(tmpdir_idx)]['dep_generators'].items()
|
||||
if k in cls.shared_deps and v != cmdname]
|
||||
|
||||
if not hasattr(cls, 'cmd_group'):
|
||||
if not 'cmd_group' in cls.__dict__:
|
||||
cls.cmd_group = self.create_cmd_group(cls, sg_name)
|
||||
|
||||
for a, b in cls.cmd_group:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue