Remove white space when listing testcases 55/42555/1
authorLinda Wang <wangwulin@huawei.com>
Wed, 20 Sep 2017 10:08:09 +0000 (10:08 +0000)
committerJose Lausuch <jalausuch@suse.com>
Wed, 20 Sep 2017 19:29:02 +0000 (19:29 +0000)
Change-Id: I2f3c7a9301a6b2dcb03a90175be23223f6a6229a
Signed-off-by: Linda Wang <wangwulin@huawei.com>
(cherry picked from commit e4ad79cabc3292a1cb0d8642f0c9eddbbc2befd1)

functest/api/resources/v1/testcases.py

index b673313..7cc70bb 100644 (file)
@@ -13,6 +13,7 @@ Resources to handle testcase related requests
 
 import logging
 import os
+import re
 import pkg_resources
 import socket
 import uuid
@@ -43,7 +44,7 @@ class V1Testcases(ApiResource):
     def get(self):  # pylint: disable=no-self-use
         """ GET all testcases """
         testcases_list = Testcase().list()
-        result = {'testcases': testcases_list.split('\n')[:-1]}
+        result = {'testcases': re.split(' |\n ', testcases_list)[1:]}
         return jsonify(result)