From 60e46040086cc8d866bfea565ae3d0b5a52db265 Mon Sep 17 00:00:00 2001 From: Georg Kunz Date: Fri, 22 Jun 2018 20:36:41 +0200 Subject: Fixing a typo in the API validation warning of the web portal. Change-Id: I0489d1e2fbd53bc90c24781a9d62140e2299c5a4 Signed-off-by: Georg Kunz --- cvp/opnfv_testapi/resources/test_handlers.py | 4 ++-- 1 file 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): -- cgit 1.2.3-korg