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 12:35:16 +0200 |
commit | 22c437b66aefad6e7aac4620e25783596341d204 (patch) | |
tree | 82b693b08c55136233f5710c4d03cdfae5f2543d /src/onaptests | |
parent | 9c71e24adaaedd07d7e2e65922c5a3cee27318c9 (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
Diffstat (limited to 'src/onaptests')
-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.""" |