From: Linda Wang Date: Wed, 20 Sep 2017 10:08:09 +0000 (+0000) Subject: Remove white space when listing testcases X-Git-Tag: 0.2~299 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=e4ad79cabc3292a1cb0d8642f0c9eddbbc2befd1;p=functest-xtesting.git Remove white space when listing testcases Change-Id: I2f3c7a9301a6b2dcb03a90175be23223f6a6229a Signed-off-by: Linda Wang --- diff --git a/functest/api/resources/v1/testcases.py b/functest/api/resources/v1/testcases.py index b6733137..7cc70bbc 100644 --- a/functest/api/resources/v1/testcases.py +++ b/functest/api/resources/v1/testcases.py @@ -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)