Skip to content
Snippets Groups Projects
Commit 930e77d1 authored by Michael Hanselmann's avatar Michael Hanselmann
Browse files

ganeti-qa: Wrap lines longer than 80 chars


Signed-off-by: default avatarMichael Hanselmann <hansmi@google.com>
Reviewed-by: default avatarIustin Pop <iustin@google.com>
parent abb24834
No related branches found
No related tags found
No related merge requests found
...@@ -215,13 +215,16 @@ def RunCommonInstanceTests(instance): ...@@ -215,13 +215,16 @@ def RunCommonInstanceTests(instance):
RunTest(qa_instance.TestInstanceShutdown, instance) RunTest(qa_instance.TestInstanceShutdown, instance)
# perform instance rename to the same name # perform instance rename to the same name
RunTest(qa_instance.TestInstanceRename, rename_source, rename_source) RunTest(qa_instance.TestInstanceRename, rename_source, rename_source)
RunTestIf("rapi", qa_rapi.TestRapiInstanceRename, rename_source, rename_source) RunTestIf("rapi", qa_rapi.TestRapiInstanceRename,
rename_source, rename_source)
if rename_target is not None: if rename_target is not None:
# perform instance rename to a different name, if we have one configured # perform instance rename to a different name, if we have one configured
RunTest(qa_instance.TestInstanceRename, rename_source, rename_target) RunTest(qa_instance.TestInstanceRename, rename_source, rename_target)
RunTest(qa_instance.TestInstanceRename, rename_target, rename_source) RunTest(qa_instance.TestInstanceRename, rename_target, rename_source)
RunTestIf("rapi", qa_rapi.TestRapiInstanceRename, rename_source, rename_target) RunTestIf("rapi", qa_rapi.TestRapiInstanceRename,
RunTestIf("rapi", qa_rapi.TestRapiInstanceRename, rename_target, rename_source) rename_source, rename_target)
RunTestIf("rapi", qa_rapi.TestRapiInstanceRename,
rename_target, rename_source)
RunTest(qa_instance.TestInstanceStartup, instance) RunTest(qa_instance.TestInstanceStartup, instance)
RunTestIf("tags", qa_tags.TestInstanceTags, instance) RunTestIf("tags", qa_tags.TestInstanceTags, instance)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment