summaryrefslogtreecommitdiffstats
path: root/testapi/opnfv_testapi/tests/unit/handlers/test_pod.py
diff options
context:
space:
mode:
authorSerena Feng <feng.xiaowei@zte.com.cn>2018-01-31 02:31:30 +0000
committerGerrit Code Review <gerrit@opnfv.org>2018-01-31 02:31:30 +0000
commitf71b89d2e5ed5283d38f5442eb79b138e94600b2 (patch)
tree7a576e245e323ad06a51898a03ab388359901d0a /testapi/opnfv_testapi/tests/unit/handlers/test_pod.py
parentbd2e91686de6bc61b97ac66af47f830d1c82786a (diff)
parent1ba2540fb5b68aa904341a89ba2fae54ab46541e (diff)
Merge "owner to creator"
Diffstat (limited to 'testapi/opnfv_testapi/tests/unit/handlers/test_pod.py')
-rw-r--r--testapi/opnfv_testapi/tests/unit/handlers/test_pod.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/testapi/opnfv_testapi/tests/unit/handlers/test_pod.py b/testapi/opnfv_testapi/tests/unit/handlers/test_pod.py
index 2818513..d1eedc0 100644
--- a/testapi/opnfv_testapi/tests/unit/handlers/test_pod.py
+++ b/testapi/opnfv_testapi/tests/unit/handlers/test_pod.py
@@ -27,7 +27,7 @@ class TestPodBase(base.TestBase):
def assert_get_body(self, pod, req=None):
if not req:
req = self.req_d
- self.assertEqual(pod, pm.Pod(owner='ValidUser', **req.format()))
+ self.assertEqual(pod, pm.Pod(creator='ValidUser', **req.format()))
self.assertIsNotNone(pod.creation_date)
self.assertIsNotNone(pod._id)