summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorDylan Baker <dylanx.c.baker@intel.com>2014-09-03 08:32:17 -0700
committerDylan Baker <dylanx.c.baker@intel.com>2014-09-03 08:45:45 -0700
commit7464d9820ff9b9876eb0722dd83b8a913081d8f8 (patch)
tree8425be1176ed14d4e825a1fcd3ee65ee3941c6ad /templates
parentb33979a8f5c852fbffc072b0bc7d6de34b248f73 (diff)
test_result.mako: Fix bug introduced by d9f87269c28c
The commit above changed the template to take a single value rather than nearly a dozen, but the template arguments changed a few of the names to shorter versions, including environment to env. The template was updated incorrectly, and environment has not been printed since then. This patch fixes this simple bug. Signed-off-by: Dylan Baker <dylanx.c.baker@intel.com> Reviewed-by: Ilia Mirkin <imirkin@alum.mit.edu>
Diffstat (limited to 'templates')
-rw-r--r--templates/test_result.mako4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/test_result.mako b/templates/test_result.mako
index 42f336b0f..7baf05c0d 100644
--- a/templates/test_result.mako
+++ b/templates/test_result.mako
@@ -61,11 +61,11 @@
<pre>${value.get('err', 'None') | h}</pre>
</td>
</tr>
- % if value.get('env') is not None:
+ % if value.get('environment') is not None:
<tr>
<td>Environment</td>
<td>
- <pre>${value.get('env') | h}</pre>
+ <pre>${value.get('environment') | h}</pre>
</td>
</tr>
% endif