From: Georg Kunz Date: Fri, 22 Jun 2018 18:36:41 +0000 (+0200) Subject: Fixing a typo in the API validation warning of the web portal. X-Git-Tag: ovp-2.0.0-rc1~48 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F33%2F58933%2F1;p=dovetail.git Fixing a typo in the API validation warning of the web portal. Change-Id: I0489d1e2fbd53bc90c24781a9d62140e2299c5a4 Signed-off-by: Georg Kunz --- 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):