diff options
author | Lasse Kaihlavirta <l.kaihlavirt@partner.samsung.com> | 2020-12-02 12:35:16 +0200 |
---|---|---|
committer | Lasse Kaihlavirta <l.kaihlavirt@partner.samsung.com> | 2020-12-02 11:24:23 +0000 |
commit | 18fc0fe4de8fefc9ca5ed97abb3a7249bf12a07f (patch) | |
tree | 46a359c6578e6e2de57c415414b116f4bfa1a2aa /src | |
parent | 7a8cc3ff337cb471d093042345eb68d8888253e6 (diff) |
Minor typo corrections
- follow-up on https://gerrit.onap.org/r/c/testsuite/pythonsdk-tests/+/115972
Issue-ID: INT-1796
Signed-off-by: Lasse Kaihlavirta <l.kaihlavirt@partner.samsung.com>
Change-Id: I8921f5aa344a3da9c40fbe20a146819587968bd1
(cherry picked from commit 22c437b66aefad6e7aac4620e25783596341d204)
Diffstat (limited to 'src')
-rw-r--r-- | src/onaptests/utils/exceptions.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/onaptests/utils/exceptions.py b/src/onaptests/utils/exceptions.py index 8b359c3..0b21248 100644 --- a/src/onaptests/utils/exceptions.py +++ b/src/onaptests/utils/exceptions.py @@ -13,7 +13,7 @@ class OnapTestException(Exception): error_message='Generic OnapTest exception' class TestConfigurationException(OnapTestException): - """Raise when configutation of the use cases is not complete or buggy.""" + """Raise when configuration of the use case is incomplete or buggy.""" error_message='Configuration error' class ServiceDistributionException(OnapTestException): @@ -52,7 +52,7 @@ class VfModuleCleanupException(OnapTestException): class NetworkInstantiateException(OnapTestException): - """Network cannot be instantiate.""" + """Network cannot be instantiated.""" error_message='Network instantiation error' @@ -62,7 +62,7 @@ class NetworkCleanupException(OnapTestException): class ProfileInformationException(OnapTestException): """Missing k8s profile information.""" - error_message='"Missing k8s profile information' + error_message='Missing k8s profile information' class ProfileCleanupException(OnapTestException): """K8s profile cannot be cleaned.""" |