Skip to content

Commit

Permalink
[JENKINS-44266] Use full ids for issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
Evaristo Gutiérrez committed Jun 12, 2017
1 parent 5a810cf commit ec9c429
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public class ConfigurationDoCheckTest {
@Rule
public JenkinsRule j = new JenkinsRule();

@Issue("7972")
@Issue("JENKINS-7972")
@Test
public void testCheckProcessNameRequired() throws Exception {
FreeStyleProject down = j.createFreeStyleProject();
Expand All @@ -44,7 +44,7 @@ public void testCheckProcessNameRequired() throws Exception {

}

@Issue("7972")
@Issue("JENKINS-7972")
@Test
public void testCheckInvalidProcessName() throws Exception {
FreeStyleProject down = j.createFreeStyleProject();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public void testRoundtrip() throws Exception {
}

@LocalData
@Issue("17341")
@Issue("JENKINS-17341")
@Test
public void testLoad() throws Exception {
FreeStyleProject jProj = j.jenkins.getItemByFullName("j", FreeStyleProject.class);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
import org.jvnet.hudson.test.JenkinsRule;

/** Verifies use of REST API to manipulate promotions. */
@Issue("8963")
@Issue("JENKINS-8963")
public class RemoteApiTest {

@Rule public JenkinsRule r = new JenkinsRule();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public final class DownstreamPassConditionTest {
public JenkinsRule j = new JenkinsRule();

@Test
@Issue("7739")
@Issue("JENKINS-7739")
public void shouldEvaluateUpstreamRecursively() throws Exception {
final FreeStyleProject job1 = j.createFreeStyleProject("job1");
final FreeStyleProject job2 = j.createFreeStyleProject("job2");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertNull;

@Issue("22005")
@Issue("JENKINS-22005")
public class ManualConditionBug22005 {

@Rule
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -144,9 +144,9 @@ public void testFailure() throws Exception {
assertFalse(badge.contains(promo2));
}

@Issue("22679")
@Issue("JENKINS-22679")
@Test
// @Issue("34826") // Can be reproduced in Jenkins 2.3 +
// @Issue("JENKINS-34826") // Can be reproduced in Jenkins 2.3 +
public void testPromotionEnvironmentShouldIncludeTargetParameters() throws Exception {
String paramName = "param";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public final class DownstreamPassConditionInheritanceTest {
public InheritanceProjectRule j = new InheritanceProjectRule();

@Test
@Issue("7739")
@Issue("JENKINS-7739")
public void shouldEvaluateUpstreamRecursively() throws Exception {
final InheritanceProjectsPair pair1 = j.createInheritanceProjectDerivedWithBase();
final InheritanceProjectsPair pair2 = j.createInheritanceProjectDerivedWithBase();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ public void testFailure() throws Exception {
}

@Test
@Issue("22679")
@Issue("JENKINS-22679")
public void testPromotionEnvironmentShouldIncludeTargetParameters() throws Exception {
String paramName = "param";

Expand Down

0 comments on commit ec9c429

Please sign in to comment.