diff options
author | Georg Kunz <georg.kunz@ericsson.com> | 2018-06-22 20:36:41 +0200 |
---|---|---|
committer | Georg Kunz <georg.kunz@ericsson.com> | 2018-06-22 20:36:41 +0200 |
commit | 60e46040086cc8d866bfea565ae3d0b5a52db265 (patch) | |
tree | 1991b3118b72ceba3053e15dac112fd6f6a8fda3 /cvp/opnfv_testapi/resources/test_handlers.py | |
parent | ea6b86b2d5aceea3dc54c3c4bf1d8a239fdde17d (diff) |
Fixing a typo in the API validation warning of the web portal.
Change-Id: I0489d1e2fbd53bc90c24781a9d62140e2299c5a4
Signed-off-by: Georg Kunz <georg.kunz@ericsson.com>
Diffstat (limited to 'cvp/opnfv_testapi/resources/test_handlers.py')
-rw-r--r-- | cvp/opnfv_testapi/resources/test_handlers.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cvp/opnfv_testapi/resources/test_handlers.py b/cvp/opnfv_testapi/resources/test_handlers.py index 9adc0d82..82cf9ae6 100644 --- a/cvp/opnfv_testapi/resources/test_handlers.py +++ b/cvp/opnfv_testapi/resources/test_handlers.py @@ -140,9 +140,9 @@ class TestsGURHandler(GenericTestHandler): warning_keyword = 'Strict API response validation DISABLED' if warning_keyword in log_content: - raise gen.Return('API response validation disable') + raise gen.Return('API response validation disabled') else: - raise gen.Return('API response validation enable') + raise gen.Return('API response validation enabled') @swagger.operation(nickname="deleteTestById") def delete(self, test_id): |