diff options
author | simonbrandhof <simon.brandhof@gmail.com> | 2010-09-14 15:47:18 +0000 |
---|---|---|
committer | simonbrandhof <simon.brandhof@gmail.com> | 2010-09-14 15:47:18 +0000 |
commit | 790ba5c2d84ff5a07e3d42eb1caf85673535e8b8 (patch) | |
tree | ddac559d218d6b7e44c44a77e1972a9e25aa41a0 | |
parent | c35e58fb40748d7aa0405bfff749d7e64a29d92d (diff) | |
download | sonarqube-790ba5c2d84ff5a07e3d42eb1caf85673535e8b8.tar.gz sonarqube-790ba5c2d84ff5a07e3d42eb1caf85673535e8b8.zip |
fix an integration test
-rw-r--r-- | sonar-server/src/main/webapp/WEB-INF/app/views/profiles/index.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/profiles/index.html.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/profiles/index.html.erb index 318ef909ae7..6205dc9c149 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/views/profiles/index.html.erb +++ b/sonar-server/src/main/webapp/WEB-INF/app/views/profiles/index.html.erb @@ -47,7 +47,7 @@ <td width="1%" nowrap>Name: </td> <td><input type="text" name="name"></input></td> </tr> - <% importers.each do |importer| %> + <% importers.to_a.sort{|x,y| x.getName() <=> y.getName()}.each do |importer| %> <tr> <td width="1%" nowrap><%= importer.getName() -%>: </td> <td> |