swagger-ize result-apis of testAPI
[releng.git] / utils / test / result_collection_api / tests / unit / test_pod.py
index 8a93027..1a43c05 100644 (file)
@@ -36,13 +36,13 @@ class TestPodCreate(TestPodBase):
         req_empty = PodCreateRequest('')
         (code, body) = self.create(req_empty)
         self.assertEqual(code, HTTP_BAD_REQUEST)
-        self.assertIn('pod name missing', body)
+        self.assertIn('name missing', body)
 
     def test_noneName(self):
         req_none = PodCreateRequest(None)
         (code, body) = self.create(req_none)
         self.assertEqual(code, HTTP_BAD_REQUEST)
-        self.assertIn('pod name missing', body)
+        self.assertIn('name missing', body)
 
     def test_success(self):
         code, body = self.create_d()