diff options
author | Linda Wang <wangwulin@huawei.com> | 2017-08-17 07:50:21 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-08-17 07:50:21 +0000 |
commit | d1b2993af8c742a74282efc27d75c479d275d2cb (patch) | |
tree | 5a9c599a318952b8060d126122cf1fbf7487669a /functest/tests/unit | |
parent | d66daa5df4ce791fb8983bb01468e25083de4305 (diff) | |
parent | b16492cfcacf4ee2e165c09b818ce5a49e05eb7b (diff) |
Merge "Remove timestamp in the details for tempest"
Diffstat (limited to 'functest/tests/unit')
-rw-r--r-- | functest/tests/unit/openstack/refstack_client/test_refstack_client.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/functest/tests/unit/openstack/refstack_client/test_refstack_client.py b/functest/tests/unit/openstack/refstack_client/test_refstack_client.py index e4e3364d..c5601075 100644 --- a/functest/tests/unit/openstack/refstack_client/test_refstack_client.py +++ b/functest/tests/unit/openstack/refstack_client/test_refstack_client.py @@ -79,9 +79,9 @@ class OSRefstackClientTesting(unittest.TestCase): ''') self.details = {"tests": 3, "failures": 1, - "success": [' tempest.api.compute [18.464988s]'], - "errors": [' tempest.api.volume [0.230334s]'], - "skipped": [' tempest.api.network [1.265828s]']} + "success": ['tempest.api.compute [18.464988s]'], + "errors": ['tempest.api.volume [0.230334s]'], + "skipped": ['tempest.api.network [1.265828s]']} with mock.patch('__builtin__.open', mock.mock_open(read_data=log_file)): self.refstackclient.parse_refstack_result() |