diff options
author | SerenaFeng <feng.xiaowei@zte.com.cn> | 2016-06-02 14:32:39 +0800 |
---|---|---|
committer | Serena Feng <feng.xiaowei@zte.com.cn> | 2016-06-02 07:06:07 +0000 |
commit | f43770e6551c17c04965184c9e47c9925f03eb7f (patch) | |
tree | 6654269fc0917cfa8f243a696fd3df3781f5dd3a /utils/test | |
parent | 5eae42a2e355e671e7906aa6e0d3d885dfd85c4b (diff) |
remove unittest test_createSameResults in testAPI
remove unittest test_createSameResults in test_results.py
JIRA: FUNCTEST-288
Change-Id: I5c1e8eb6c09a5ced1a6cdd380e9c37961136e6d2
Signed-off-by: SerenaFeng <feng.xiaowei@zte.com.cn>
Diffstat (limited to 'utils/test')
-rw-r--r-- | utils/test/result_collection_api/opnfv_testapi/tests/unit/test_result.py | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/utils/test/result_collection_api/opnfv_testapi/tests/unit/test_result.py b/utils/test/result_collection_api/opnfv_testapi/tests/unit/test_result.py index 23a745fe0..50a0b966e 100644 --- a/utils/test/result_collection_api/opnfv_testapi/tests/unit/test_result.py +++ b/utils/test/result_collection_api/opnfv_testapi/tests/unit/test_result.py @@ -156,15 +156,6 @@ class TestResultCreate(TestResultBase): self.assertEqual(code, HTTP_OK) self.assert_href(body) - def test_createSameResults(self): - req_again = copy.deepcopy(self.req_d) - req_again.start_date = "2016-05-23 08:16:09.477097" - req_again.stop_date = "2016-05-23 08:16:19.477097" - - (code, body) = self.create(req_again) - self.assertEqual(code, HTTP_OK) - self.assert_href(body) - class TestResultGet(TestResultBase): def test_getOne(self): |