summaryrefslogtreecommitdiff
path: root/heatclient/tests
diff options
context:
space:
mode:
authorPriyaDuggirala <priyaduggirala02@gmail.com>2017-10-26 19:54:07 +0530
committerPriyaDuggirala <priyaduggirala02@gmail.com>2017-10-27 20:33:25 +0530
commitf73c2a4177377b710a02577feea38560b00a24bf (patch)
tree29f9dd14b93bc01911ad8385585537f9f66ad33e /heatclient/tests
parent868f3b80b7c701607b644afd19e320a9f35e0cfc (diff)
downloadpython-heatclient-f73c2a4177377b710a02577feea38560b00a24bf.tar.gz
Modify error message encountered during stack update
Parameters of an existing stack can be updated with openstack stack update <stack> --existing --parameter <parameter>=<newvalue> Example : openstack stack update stack1 --parameter p1=v1 If the --existing option is skipped, it leads to the below error Need to specify exactly one of --template-file, --template-url or --template-object This error is misleading as the user might think that stack update cannot be performed without specifying a new template. Modify the error message with --existing option. Change-Id: Idce88bde848378e00b1c873245600ba205939668 Closes-Bug: #1723864
Diffstat (limited to 'heatclient/tests')
-rw-r--r--heatclient/tests/unit/test_template_utils.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/heatclient/tests/unit/test_template_utils.py b/heatclient/tests/unit/test_template_utils.py
index 01cfa13..e4303c6 100644
--- a/heatclient/tests/unit/test_template_utils.py
+++ b/heatclient/tests/unit/test_template_utils.py
@@ -616,8 +616,8 @@ class TestGetTemplateContents(testtools.TestCase):
exc.CommandError,
template_utils.get_template_contents)
self.assertEqual(
- ('Need to specify exactly one of --template-file, '
- '--template-url or --template-object'),
+ ('Need to specify exactly one of [--template-file, '
+ '--template-url or --template-object] or --existing'),
str(ex))
def test_get_template_contents_file_none_existing(self):