Skip to content

Commit

Permalink
Fix a referenced issue number
Browse files Browse the repository at this point in the history
The issue number for nested test suites is JENKINS-6545, not JENKINS-6454.
  • Loading branch information
chickenkiller committed Jan 17, 2018
1 parent 0061cf2 commit d4c888e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/java/hudson/tasks/junit/SuiteResultTest.java
Expand Up @@ -316,7 +316,7 @@ public void testErrorInTestInitialization() throws Exception {
assertTrue(result.getErrorStackTrace() != null);
}

@Issue("JENKINS-6454")
@Issue("JENKINS-6545")
@Test
public void testParseNestedTestSuites() throws Exception {
// A report with several nested suites
Expand All @@ -338,4 +338,4 @@ public void testTestSuiteTimeAttribute() throws Exception {
assertEquals(40.0f, results.get(2).getDuration(), 2); //testsuit time
assertEquals(20.0f, results.get(3).getDuration(), 2); //sum of test cases time
}
}
}

0 comments on commit d4c888e

Please sign in to comment.