Skip to content
This repository was archived by the owner on Mar 27, 2025. It is now read-only.

Commit 30e5eb0

Browse files
committed
Update indentation
1 parent 7f26d59 commit 30e5eb0

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

src/test/java/com/mathworks/ci/systemTests/RunMATLABTestsIT.java

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -297,17 +297,17 @@ public void verifyTestsAreFiltered() throws Exception{
297297
@Test
298298
public void verifyTestsAreFilteredDSL() throws Exception{
299299
String script = "pipeline {\n" +
300-
"agent any" + "\n" +
301-
Utilities.getEnvironmentDSL() + "\n" +
302-
"stages{" + "\n" +
303-
"stage('Run MATLAB Command') {\n" +
304-
"steps\n" +
305-
"{"+
306-
addTestData()+"\n" +
307-
"runMATLABTests(sourceFolder:['src'], selectByFolder: ['test/TestMultiply', 'test/TestSquare'], selectByTag: 'TestTag')\n" +
308-
"}" + "\n" +
309-
"}" + "\n" +
310-
"}" + "\n" +
300+
" agent any\n" +
301+
Utilities.getEnvironmentDSL() + "\n" +
302+
" stages{\n" +
303+
" stage('Run MATLAB Command') {\n" +
304+
" steps\n" +
305+
" {\n" +
306+
" unzip '/C:/Users/vkayithi/jenkins/mpm_dev_main/jenkins-matlab-plugin/src/test/resources/TestData/FilterTestData.zip' \n" +
307+
" runMATLABTests(sourceFolder:['src'], selectByFolder: ['test/TestMultiply', 'test/TestSquare'], selectByTag: 'TestTag')"+
308+
" }\n" +
309+
" }\n" +
310+
" }\n" +
311311
"}";
312312
WorkflowRun build = getPipelineBuild(script);
313313
jenkins.assertLogContains("Running testMultiply",build);

0 commit comments

Comments
 (0)