File tree Expand file tree Collapse file tree 6 files changed +7
-3
lines changed Expand file tree Collapse file tree 6 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 3232 <useBeta >true</useBeta >
3333 <concurrency >1C</concurrency >
3434 <scm-api-plugin .version>2.6.3</scm-api-plugin .version>
35- <jcasc .version>1.25 </jcasc .version>
35+ <jcasc .version>1.27 </jcasc .version>
3636 <maven .checkstyle.plugin.version>3.1.0</maven .checkstyle.plugin.version>
3737 <maven .checkstyle.version>8.23</maven .checkstyle.version>
3838 </properties >
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 @@ -2182,6 +2182,7 @@ public void testInitSparseCheckoutOverSlave() throws Exception {
21822182
21832183 @ Issue ("JENKINS-22009" )
21842184 @ Test
2185+ @ Issue ("JENKINS-22009" )
21852186 public void testPolling_environmentValueInBranchSpec () throws Exception {
21862187 // create parameterized project with environment value in branch specification
21872188 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 @@ -35,6 +35,6 @@ protected void assertConfiguredAsExpected(RestartableJenkinsRule restartableJenk
3535
3636 @ Override
3737 protected String stringInLogExpected () {
38- return "Setting class hudson.plugins.git.GitSCM.submoduleCfg = [{}, {} ]" ;
38+ return "Setting class hudson.plugins.git.SubmoduleConfig. branches = [mybranch-3, mybranch-4 ]" ;
3939 }
4040}
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