Skip to content

Commit

Permalink
[JENKINS-18278] Correcting error in setup file
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfgarnet committed Sep 18, 2013
1 parent d367d66 commit ea5d2d6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Expand Up @@ -43,7 +43,10 @@ public void basicSibling() throws Exception {
AbstractBuild<?, ?> build = initiateBuild( "no-options-" + ccenv.getUniqueName(), false, false, false, false );

/* Validate */
SystemValidator validator = new SystemValidator( build ).validateBuild( build.getResult() ).validateBuiltBaseline( PromotionLevel.BUILT, baseline, false ).validateCreatedBaseline( true );
SystemValidator validator = new SystemValidator( build ).
validateBuild( build.getResult() ).
validateBuiltBaseline( PromotionLevel.BUILT, baseline, false ).
validateCreatedBaseline( true );
validator.validate();
}

Expand Down
2 changes: 1 addition & 1 deletion src/test/resources/setup-interproject.xml
Expand Up @@ -7,7 +7,7 @@

<project name="two" comment="" pvob="${pvobname}" in="one_folder">
<components>
<component name="Service" ponevob="${pvobname}" />
<component name="Service" pvob="${pvobname}" />
<component name="Model" pvob="${pvobname}" />
<component name="Clientapp" pvob="${pvobname}" />
</components>
Expand Down

0 comments on commit ea5d2d6

Please sign in to comment.