File tree Expand file tree Collapse file tree 4 files changed +5
-1
lines changed Expand file tree Collapse file tree 4 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -158,6 +158,7 @@ public void testUsesJavaPatternDirectlyIfPrefixedWithColon() {
158158 }
159159
160160 @ Test
161+ @ Issue ("JENKINS-26842" )
161162 public void testUsesJavaPatternWithRepetition () {
162163 // match pattern from JENKINS-26842
163164 BranchSpec m = new BranchSpec (":origin/release-\\ d{8}" );
Original file line number Diff line number Diff line change @@ -1832,6 +1832,7 @@ public void testInitSparseCheckoutOverSlave() throws Exception {
18321832 * @throws Exception
18331833 */
18341834 @ Test
1835+ @ Issue ("JENKINS-22009" )
18351836 public void testPolling_environmentValueInBranchSpec () throws Exception {
18361837 // create parameterized project with environment value in branch specification
18371838 FreeStyleProject project = createFreeStyleProject ();
Original file line number Diff line number Diff line change @@ -204,7 +204,7 @@ public void equalsContract() {
204204 .verify ();
205205 }
206206
207- @ Issue ("JENKINS-51638" )
207+ @ Issue ({ "JENKINS-51638" , "JENKINS-34070" } )
208208 @ Test
209209 public void mergeStrategyCase () throws Exception {
210210 Map <String , Object > args = new HashMap <>();
Original file line number Diff line number Diff line change 2828import org .jenkinsci .plugins .workflow .libs .SCMSourceRetriever ;
2929import org .junit .Rule ;
3030import org .junit .Test ;
31+ import org .jvnet .hudson .test .Issue ;
3132import org .jvnet .hudson .test .JenkinsRule ;
3233
3334import static org .hamcrest .Matchers .contains ;
@@ -40,6 +41,7 @@ public class ModernScmTest {
4041 public JenkinsRule jenkins = new JenkinsRule ();
4142
4243 @ Test
44+ @ Issue ("JENKINS-58964" )
4345 public void gitIsModernScm () {
4446 SCMSourceRetriever .DescriptorImpl descriptor = ExtensionList .lookupSingleton (SCMSourceRetriever .DescriptorImpl .class );
4547 assertThat (descriptor .getSCMDescriptors (), contains (instanceOf (GitSCMSource .DescriptorImpl .class )));
You can’t perform that action at this time.
0 commit comments