diff options
author | Julien Lancelot <julien.lancelot@gmail.com> | 2013-02-06 11:26:33 +0100 |
---|---|---|
committer | Julien Lancelot <julien.lancelot@gmail.com> | 2013-02-06 11:26:33 +0100 |
commit | 7d97a938d4a493b182752fdaa4df5c21e9689591 (patch) | |
tree | 6d014001194430d451873f2c7882620fcc6466c9 /plugins | |
parent | 9e2626923826645a4d3cc4631928ea358f92cd58 (diff) | |
download | sonarqube-7d97a938d4a493b182752fdaa4df5c21e9689591.tar.gz sonarqube-7d97a938d4a493b182752fdaa4df5c21e9689591.zip |
Move test icon files and fix issue when displaying Tests covering file
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 87fd4234f8f..d2363619405 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 @@ -91,7 +91,7 @@ %> <tr class="<%= cycle("even", "odd") -%> testdata_<%= index -%>" display="table-row"> <td class="thin" nowrap> - <img class="test_status_<%= index -%>_<%= test_case[:status] -%>" src="<%= ApplicationController.root_context + "/images/tests/" + test_case[:status] + ".png" -%>"/> + <img class="test_status_<%= index -%>_<%= test_case[:status] -%>" src="<%= ApplicationController.root_context + "/images/test/" + test_case[:status] + ".png" -%>"/> </td> <td class="test_time_<%= index -%> thin right" nowrap><%= test_case[:time] -%> ms</td> <% if has_covered_lines %> |