summaryrefslogtreecommitdiffstats
path: root/testapi/opnfv_testapi/tests/unit/handlers/test_pod.py
diff options
context:
space:
mode:
Diffstat (limited to 'testapi/opnfv_testapi/tests/unit/handlers/test_pod.py')
-rw-r--r--testapi/opnfv_testapi/tests/unit/handlers/test_pod.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/testapi/opnfv_testapi/tests/unit/handlers/test_pod.py b/testapi/opnfv_testapi/tests/unit/handlers/test_pod.py
index 28d29b5..3a16799 100644
--- a/testapi/opnfv_testapi/tests/unit/handlers/test_pod.py
+++ b/testapi/opnfv_testapi/tests/unit/handlers/test_pod.py
@@ -112,8 +112,9 @@ class TestPodDelete(TestPodBase):
super(TestPodDelete, self).setUp()
fake_pymongo.pods.insert(self.pod_d.format())
fake_pymongo.projects.insert({'name': self.results_d.project_name})
- fake_pymongo.testcases.insert({'name': self.results_d.case_name,
- 'project_name': self.results_d.project_name})
+ fake_pymongo.testcases.insert({
+ 'name': self.results_d.case_name,
+ 'project_name': self.results_d.project_name})
@executor.delete(httplib.BAD_REQUEST, message.not_login())
def test_notlogin(self):