Remove mox usage from test_shell

Change-Id: I4e1dbb55dbc01ebf18ca80aa63ae492a1a8f47ae
This commit is contained in:
Zane Bitter 2020-02-07 00:21:31 -05:00
parent 48d19397a6
commit 163d4aa0e9
2 changed files with 121 additions and 291 deletions

File diff suppressed because it is too large Load Diff

View File

@ -1341,9 +1341,7 @@ def do_config_create(hc, args):
}
hc.stacks.validate(template=validate_template)
config['name'] = args.name
sc = hc.software_configs.create(**config)
sc = hc.software_configs.create(name=args.name, **config)
print(jsonutils.dumps(sc.to_dict(), indent=2))