Merge "Remove mox usage from test_shell"

This commit is contained in:
Zuul 2020-02-19 04:20:15 +00:00 committed by Gerrit Code Review
commit b757fdd0f6
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))