diff options
author | Julien Lancelot <julien.lancelot@gmail.com> | 2013-02-07 11:32:39 +0100 |
---|---|---|
committer | Julien Lancelot <julien.lancelot@gmail.com> | 2013-02-07 11:32:39 +0100 |
commit | c033d2a75956df7de7ff7a22460cc90eea15800b (patch) | |
tree | 287cd26baf7aaf1517870ba53bc8063bbd879dd6 /plugins | |
parent | d37562929e44abf8f4b20b3f61483654db4e973b (diff) | |
download | sonarqube-c033d2a75956df7de7ff7a22460cc90eea15800b.tar.gz sonarqube-c033d2a75956df7de7ff7a22460cc90eea15800b.zip |
Fix class / id issue on tests viewer
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/web/tests_viewer.html.erb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/web/tests_viewer.html.erb b/plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/web/tests_viewer.html.erb index d0868abab6a..b3387b12c4f 100644 --- a/plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/web/tests_viewer.html.erb +++ b/plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/web/tests_viewer.html.erb @@ -2,7 +2,7 @@ <table> <tr> <% test_success_density = measure('test_success_density') %> - <td id="test_success_density" class=" big"><%= test_success_density ? number_with_precision(test_success_density.value(), :precision => 1) : "100.0" -%>%</td> + <td id="test_success_density" class=" big"><%= test_success_density ? number_with_precision(test_success_density.value(), :precision => 1) : "100.0" -%>%</td> <td class="sep"></td> <td class="name"><%= message('test_viewer.tests') -%>:</td> <% @@ -93,9 +93,9 @@ <td class="thin" nowrap> <img id="test_status_<%= index -%>_<%= test_case[:status] -%>" src="<%= ApplicationController.root_context + "/images/test/" + test_case[:status] + ".png" -%>"/> </td> - <td id="test_time_<%= index -%> thin right" nowrap><%= test_case[:time] -%> ms</td> + <td id="test_time_<%= index -%>" class="thin right" nowrap><%= test_case[:time] -%> ms</td> <% if has_covered_lines %> - <td id="test_covered_lines_<%= index -%> thin right" nowrap> + <td id="test_covered_lines_<%= index -%>" class="thin right" nowrap> <a id="test_covered_lines_link_<%= index -%>" href="<%= ApplicationController.root_context -%>/test/testcase/?sid=<%= @snapshot.id -%>&test=<%= test_case[:name] -%>" onclick="openAccordionItem(this.href, this); return false;"><%= number_with_precision(test_case[:covered_lines], :precision => 0) -%> </a> |