Skip to content

Commit

Permalink
use distinct repository names in the workspace examples
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-cit committed Aug 6, 2024
1 parent 77bfd2f commit 4d5ae9e
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 @@ -84,7 +84,7 @@ func (gh *GitHubClient) DeleteRepository(ctx context.Context) {
func TestCloudBuildWorkspaceSimpleGitHub(t *testing.T) {
ctx := context.Background()

repoName := fmt.Sprintf("cb-bp-test-%s", utils.GetRandomStringFromSetup(t))
repoName := fmt.Sprintf("cb-bp-gh-%s", utils.GetRandomStringFromSetup(t))
githubPAT := cftutils.ValFromEnv(t, "IM_GITHUB_PAT")
owner := "im-goose"
client := NewGitHubClient(t, githubPAT, owner, repoName)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ func (gl *GitLabClient) DeleteProject() {
}

func TestCloudBuildWorkspaceSimpleGitLab(t *testing.T) {
repoName := fmt.Sprintf("cb-bp-test-%s", utils.GetRandomStringFromSetup(t))
repoName := fmt.Sprintf("cb-bp-gl-%s", utils.GetRandomStringFromSetup(t))
gitlabPAT := cftutils.ValFromEnv(t, "IM_GITLAB_PAT")
owner := "infrastructure-manager"

Expand Down

0 comments on commit 4d5ae9e

Please sign in to comment.