Skip to content

Commit

Permalink
Merge pull request #27 from recena/master
Browse files Browse the repository at this point in the history
[JENKINS-28550] Test reviewed to work fine with the new proposal of side-panel and main-panel
  • Loading branch information
daniel-beck committed Jul 5, 2015
2 parents cdf4a8e + 3e0e86c commit f824957
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -51,7 +51,7 @@ public void assertHasResult(List<String> correct) {
find(by.link("Coverage Report")).click();

// Extract the result data and verify.
String content = find(by.css("div#main-panel-content")).getText();
String content = find(by.id("main-panel")).getText();
Pattern p = Pattern.compile("\\d+(?:[,.]\\d+)");
Matcher m = p.matcher(content);
List<String> l = new ArrayList<String>(NO_RESULT_CELLS);
Expand Down

0 comments on commit f824957

Please sign in to comment.