diff options
author | Julien Lancelot <julien.lancelot@gmail.com> | 2013-02-06 10:15:04 +0100 |
---|---|---|
committer | Julien Lancelot <julien.lancelot@gmail.com> | 2013-02-06 10:15:04 +0100 |
commit | 0831e5081735392bd7bbb517fcd9508e89d57408 (patch) | |
tree | 5158bba0fb770c81ff4f8138dc61e2aa8a4a162f /plugins | |
parent | 3c86fc9b760e0f663e85673a1ddff51f2b0494b9 (diff) | |
download | sonarqube-0831e5081735392bd7bbb517fcd9508e89d57408.tar.gz sonarqube-0831e5081735392bd7bbb517fcd9508e89d57408.zip |
Fix covered test align issue
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/web/tests_viewer.html.erb | 2 |
1 files changed, 1 insertions, 1 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 426aa7d701e..99e9c06c50b 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 @@ -95,7 +95,7 @@ </td> <td class="test_time_<%= index -%> thin right" nowrap><%= test_case[:time] -%> ms</td> <% if has_covered_lines %> - <td class="test_covered_lines_<%= index -%>" class="thin right" nowrap> + <td class="test_covered_lines_<%= index -%> thin right" nowrap> <a class="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> |