From 5599da2f9730e17b515512b743d1d96ddcc2de38 Mon Sep 17 00:00:00 2001 From: SerenaFeng Date: Mon, 26 Dec 2016 17:36:08 +0800 Subject: correct swagger model of TestAPI Change-Id: I101283cb118416823a4d1c77b3de6d7882135f1e Signed-off-by: SerenaFeng --- testapi/opnfv_testapi/resources/models.py | 1 + testapi/opnfv_testapi/resources/result_models.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) (limited to 'testapi/opnfv_testapi') diff --git a/testapi/opnfv_testapi/resources/models.py b/testapi/opnfv_testapi/resources/models.py index a281c66..f518c97 100644 --- a/testapi/opnfv_testapi/resources/models.py +++ b/testapi/opnfv_testapi/resources/models.py @@ -70,6 +70,7 @@ class ModelBase(object): return t +@swagger.model() class CreateResponse(ModelBase): def __init__(self, href=''): self.href = href diff --git a/testapi/opnfv_testapi/resources/result_models.py b/testapi/opnfv_testapi/resources/result_models.py index 3011902..50445fc 100644 --- a/testapi/opnfv_testapi/resources/result_models.py +++ b/testapi/opnfv_testapi/resources/result_models.py @@ -112,7 +112,7 @@ class TestResult(models.ModelBase): @swagger.model() class TestResults(models.ModelBase): """ - @property rgit esults: + @property results: @ptype results: C{list} of L{TestResult} """ def __init__(self): -- cgit 1.2.3-korg