Fixing a typo in the API validation warning of the web portal. 33/58933/1
authorGeorg Kunz <georg.kunz@ericsson.com>
Fri, 22 Jun 2018 18:36:41 +0000 (20:36 +0200)
committerGeorg Kunz <georg.kunz@ericsson.com>
Fri, 22 Jun 2018 18:36:41 +0000 (20:36 +0200)
Change-Id: I0489d1e2fbd53bc90c24781a9d62140e2299c5a4
Signed-off-by: Georg Kunz <georg.kunz@ericsson.com>
cvp/opnfv_testapi/resources/test_handlers.py

index 9adc0d8..82cf9ae 100644 (file)
@@ -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):