Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class GovernanceTierSpec extends Specification{
// create common SCM
GitSCM scm = new GitSCM(
GitSCM.createRepoList(sampleRepo.toString(), null),
Collections.singletonList(new BranchSpec("*/master")),
Collections.singletonList(new BranchSpec("*/main")),
false,
Collections.<SubmoduleConfig>emptyList(),
null,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ class TemplateLibrarySourceSpec extends Specification{

GitSCM scm = new GitSCM(
GitSCM.createRepoList(repo.toString(), null),
Collections.singletonList(new BranchSpec("*/master")),
Collections.singletonList(new BranchSpec("*/main")),
false,
Collections.<SubmoduleConfig>emptyList(),
null,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ class ScmSpec extends Specification {
// create Governance Tier
scm = new GitSCM(
GitSCM.createRepoList(sampleRepo.toString(), null),
Collections.singletonList(new BranchSpec("*/master")),
Collections.singletonList(new BranchSpec("*/main")),
false,
Collections.<SubmoduleConfig>emptyList(),
null,
Expand Down