summaryrefslogtreecommitdiffstats
path: root/testapi/opnfv_testapi/models/result_models.py
diff options
context:
space:
mode:
Diffstat (limited to 'testapi/opnfv_testapi/models/result_models.py')
-rw-r--r--testapi/opnfv_testapi/models/result_models.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/testapi/opnfv_testapi/models/result_models.py b/testapi/opnfv_testapi/models/result_models.py
index 1dbe729..f8379d8 100644
--- a/testapi/opnfv_testapi/models/result_models.py
+++ b/testapi/opnfv_testapi/models/result_models.py
@@ -62,8 +62,6 @@ class ResultCreateRequest(base_models.ModelBase):
build_tag=None,
scenario=None,
criteria=None,
- user=None,
- public="true",
trust_indicator=None):
self.pod_name = pod_name
self.project_name = project_name
@@ -76,8 +74,6 @@ class ResultCreateRequest(base_models.ModelBase):
self.build_tag = build_tag
self.scenario = scenario
self.criteria = criteria
- self.user = user
- self.public = public
self.trust_indicator = trust_indicator if trust_indicator else TI(0)
def __eq__(self, other):