Skip to content

Commit

Permalink
Refactoring for indentations
Browse files Browse the repository at this point in the history
  • Loading branch information
KINAXIS\agharat committed Sep 28, 2022
1 parent e5374aa commit e0a2432
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,7 @@ public void parallelBuildsDontInterfereWithExpiredCache() throws Throwable {
new SCMSourceRetriever(new GitSCMSource(null, sampleRepo.toString(), "", "*", "", true)));
config.setDefaultVersion("master");
config.setImplicit(true);
config.setCachingConfiguration(new LibraryCachingConfiguration(30, null,null));
config.setCachingConfiguration(new LibraryCachingConfiguration(30, null, null));
GlobalLibraries.get().getLibraries().add(config);
WorkflowJob p1 = r.createProject(WorkflowJob.class);
WorkflowJob p2 = r.createProject(WorkflowJob.class);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public class ResourceStepTest {
initFixedContentLibrary();

LibraryConfiguration libraryConfig = new LibraryConfiguration("stuff", new SCMSourceRetriever(new GitSCMSource(null, sampleRepo.toString(), "", "*", "", true)));
libraryConfig.setCachingConfiguration(new LibraryCachingConfiguration(0, "",""));
libraryConfig.setCachingConfiguration(new LibraryCachingConfiguration(0, "", ""));
GlobalLibraries.get().setLibraries(Collections.singletonList(libraryConfig));
WorkflowJob p = r.jenkins.createProject(WorkflowJob.class, "p");

Expand Down

0 comments on commit e0a2432

Please sign in to comment.