diff options
author | SerenaFeng <feng.xiaowei@zte.com.cn> | 2016-06-21 20:52:57 +0800 |
---|---|---|
committer | SerenaFeng <feng.xiaowei@zte.com.cn> | 2016-06-21 20:52:57 +0800 |
commit | a49f027ad706e27bf3e71bc7777481fcb87a5305 (patch) | |
tree | ad4ad783baf00ca51c150c2fc9287eb93a127565 /utils | |
parent | db0085ebc1b1741034b73533d9babeab13e40e14 (diff) |
bugfix: correct the projects post response body in testAPI
change response class from Project to CreateResponse
JIRA: FUNCTEST-328
Change-Id: I26d05b71251417b41701136d9c6bc786ba51393c
Signed-off-by: SerenaFeng <feng.xiaowei@zte.com.cn>
Diffstat (limited to 'utils')
-rw-r--r-- | utils/test/result_collection_api/opnfv_testapi/resources/project_handlers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/test/result_collection_api/opnfv_testapi/resources/project_handlers.py b/utils/test/result_collection_api/opnfv_testapi/resources/project_handlers.py index 171ab7695..1e9a97230 100644 --- a/utils/test/result_collection_api/opnfv_testapi/resources/project_handlers.py +++ b/utils/test/result_collection_api/opnfv_testapi/resources/project_handlers.py @@ -38,7 +38,7 @@ class ProjectCLHandler(GenericProjectHandler): @param body: project to be created @type body: L{ProjectCreateRequest} @in body: body - @rtype: L{Project} + @rtype: L{CreateResponse} @return 200: project is created. @raise 403: project already exists @raise 400: body or name not provided |