Skip to content

Commit

Permalink
[JENKINS-42310] Changed Test Cases names
Browse files Browse the repository at this point in the history
  • Loading branch information
v1v committed Feb 25, 2017
1 parent 6770f33 commit d6b7775
Showing 1 changed file with 4 additions and 4 deletions.
Expand Up @@ -41,8 +41,8 @@ public class JobAssignedLabelCheckerTestCase {
assertTrue(checker.executeCheck(project));
}
@Issue("JENKINS-42310")
@Test public void testMavenDescription() throws Exception {
MavenModuleSet project = j.createMavenProject("WithoutSystem");
@Test public void testMavenWithAssignedLabel() throws Exception {
MavenModuleSet project = j.createMavenProject();
j.createSlave("test",null);
project.setAssignedLabel(j.jenkins.getLabel("test"));
project.save();
Expand All @@ -54,8 +54,8 @@ public class JobAssignedLabelCheckerTestCase {
assertTrue(checker.executeCheck(project));
}
@Issue("JENKINS-42310")
@Test public void testMatrixProjectDescription() throws Exception {
MatrixProject project = j.createMatrixProject("WithoutSystem");
@Test public void testMatrixProjectWithAssignedLabel() throws Exception {
MatrixProject project = j.createMatrixProject();
j.createSlave("test",null);
project.setAssignedLabel(j.jenkins.getLabel("test"));
project.save();
Expand Down

0 comments on commit d6b7775

Please sign in to comment.