Skip to content

Commit

Permalink
Shortening string representation of capabilities on the grid console
Browse files Browse the repository at this point in the history
  • Loading branch information
barancev committed Dec 19, 2013
1 parent 53448f4 commit e0bdd6b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ protected void process(HttpServletRequest request, HttpServletResponse response)

builder.append("<ul>");
for (DesiredCapabilities req : getRegistry().getDesiredCapabilities()) {
builder.append("<li>").append(req.asMap()).append("</li>");
builder.append("<li>").append(req).append("</li>");
}
builder.append("</ul>");

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ private Object getRequestQueue() {

builder.append("<ul>");
for (DesiredCapabilities req : getRegistry().getDesiredCapabilities()) {
builder.append("<li>").append(req.asMap()).append("</li>");
builder.append("<li>").append(req).append("</li>");
}
builder.append("</ul>");
builder.append("</div>");
Expand Down

0 comments on commit e0bdd6b

Please sign in to comment.