From 0edbe7697fa51162bee94d7d449ae00596cc164b Mon Sep 17 00:00:00 2001 From: Guinevere Saenger Date: Fri, 13 Jan 2023 10:38:12 -0800 Subject: [PATCH] Change test repo description to be language specific 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. --- examples/repo/python/__main__.py | 2 +- examples/repo/ts/index.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/repo/python/__main__.py b/examples/repo/python/__main__.py index add4e464..903ca063 100644 --- a/examples/repo/python/__main__.py +++ b/examples/repo/python/__main__.py @@ -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" ) diff --git a/examples/repo/ts/index.ts b/examples/repo/ts/index.ts index c36c3501..37f2d95b 100644 --- a/examples/repo/ts/index.ts +++ b/examples/repo/ts/index.ts @@ -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", });