summaryrefslogtreecommitdiff
path: root/openstackclient/tests/functional/base.py
diff options
context:
space:
mode:
authorZuul <zuul@review.opendev.org>2022-05-16 09:36:14 +0000
committerGerrit Code Review <review@openstack.org>2022-05-16 09:36:14 +0000
commitccd877dd405191002f0f1b0e7ed414671e8a8e64 (patch)
tree768997c3c598e337c1b05d72b13c883e865611bc /openstackclient/tests/functional/base.py
parent4b97a8518146f1427090801e8535251545617de2 (diff)
parent43639e1118a757fd1a00d9ea999db43133c40763 (diff)
downloadpython-openstackclient-ccd877dd405191002f0f1b0e7ed414671e8a8e64.tar.gz
Merge "Fix typos"
Diffstat (limited to 'openstackclient/tests/functional/base.py')
-rw-r--r--openstackclient/tests/functional/base.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/openstackclient/tests/functional/base.py b/openstackclient/tests/functional/base.py
index e89c5b97..b6867f81 100644
--- a/openstackclient/tests/functional/base.py
+++ b/openstackclient/tests/functional/base.py
@@ -51,7 +51,7 @@ class TestCase(testtools.TestCase):
def openstack(cls, cmd, cloud=ADMIN_CLOUD, fail_ok=False):
"""Executes openstackclient command for the given action
- NOTE(dtroyer): There is a subtle distinction between pasing
+ NOTE(dtroyer): There is a subtle distinction between passing
cloud=None and cloud='': for compatibility reasons passing
cloud=None continues to include the option '--os-auth-type none'
in the command while passing cloud='' omits the '--os-auth-type'
@@ -70,7 +70,7 @@ class TestCase(testtools.TestCase):
fail_ok=fail_ok
)
else:
- # Execure command with an explicit cloud specified
+ # Execute command with an explicit cloud specified
return execute(
'openstack --os-cloud=' + cloud + ' ' + cmd,
fail_ok=fail_ok