Skip to content

Commit

Permalink
Change test repo description to be language specific
Browse files Browse the repository at this point in the history
While debugging tests, it was unclear which test was creating which
repo. Changing the descriptions makes it easier to figure out which test
to look at.
  • Loading branch information
guineveresaenger committed Jan 13, 2023
1 parent 00153e7 commit 0edbe76
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/repo/python/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import pulumi_github as github

repo = github.Repository("demo-repo",
description="Generated from automated test",
description="Generated from automated Python test",
visibility="private"
)

Expand Down
2 changes: 1 addition & 1 deletion examples/repo/ts/index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import * as github from "@pulumi/github";

const repo = new github.Repository("demo-repo", {
description: "Generated from automated test",
description: "Generated from automated Typescript test",
visibility: "private",
});

Expand Down

0 comments on commit 0edbe76

Please sign in to comment.