diff options
author | Dylan Baker <baker.dylan.c@gmail.com> | 2015-10-07 23:40:18 -0700 |
---|---|---|
committer | Dylan Baker <baker.dylan.c@gmail.com> | 2015-10-08 13:57:45 -0700 |
commit | 4005f4a8381d6de04bb64c3dc12ef940a41e83f5 (patch) | |
tree | e7b6ecbcb720a7d970d0d020b7da7c65dca06df9 /templates | |
parent | c22225af56e880193c1fc90e667dbd1048f9cc3e (diff) |
framework: use TimeAttribute for TestResult and TestrunResult
This makes use of the time TimeAttribute for handling times in results,
both for tests and for runs.
This change requires bumping the json version, and a large chunk of the
changes in this patch are for that change.
This could be split into two patches, but that would require making two
sequential bumps to the json results version, and I felt that the larger
patch was better than making two version bumps.
Reviewed-by: Mark Janes <mark.a.janes@intel.com>
Signed-off-by: Dylan Baker <dylanx.c.baker@intel.com>
Diffstat (limited to 'templates')
-rw-r--r-- | templates/test_result.mako | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/test_result.mako b/templates/test_result.mako index f08810a1d..229a5a7c1 100644 --- a/templates/test_result.mako +++ b/templates/test_result.mako @@ -26,7 +26,7 @@ </tr> <tr> <td>Time</td> - <td>${value.time}</b> + <td>${value.time.delta}</b> </tr> % if value.images: <tr> |