summaryrefslogtreecommitdiffstats
path: root/testcases/tests/TestFunctestUtils.py
diff options
context:
space:
mode:
Diffstat (limited to 'testcases/tests/TestFunctestUtils.py')
-rw-r--r--testcases/tests/TestFunctestUtils.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/testcases/tests/TestFunctestUtils.py b/testcases/tests/TestFunctestUtils.py
index fd83ed6f5..024088b13 100644
--- a/testcases/tests/TestFunctestUtils.py
+++ b/testcases/tests/TestFunctestUtils.py
@@ -80,12 +80,12 @@ class TestFunctestUtils(unittest.TestCase):
test = isTestRunnable('functest/vims', functest_yaml)
self.assertTrue(test)
-
def test_generateTestcaseList(self):
test = generateTestcaseList(functest_yaml)
- expected_list = "vping_ssh vping_userdata tempest odl doctor promise policy-test odl-vpn_service-tests vims rally "
+ expected_list = "vping_ssh vping_userdata tempest odl doctor " + \
+ "promise policy-test odl-vpn_service-tests vims rally "
self.assertEqual(test, expected_list)
def tearDown(self):
@@ -95,4 +95,3 @@ class TestFunctestUtils(unittest.TestCase):
if __name__ == '__main__':
unittest.main()
-