Skip to content

Commit

Permalink
Fix resource name to have sweepable prefix (GoogleCloudPlatform#9984)
Browse files Browse the repository at this point in the history
  • Loading branch information
SarahFrench authored and pengq-google committed May 21, 2024
1 parent 8604085 commit d01b053
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ import (
func TestAccComputeRegionTargetTcpProxy_update(t *testing.T) {
t.Parallel()

target := fmt.Sprintf("trtcp-test-%s", acctest.RandString(t, 10))
backend := fmt.Sprintf("trtcp-test-%s", acctest.RandString(t, 10))
hc := fmt.Sprintf("trtcp-test-%s", acctest.RandString(t, 10))
target := fmt.Sprintf("tf-test-%s", acctest.RandString(t, 10))
backend := fmt.Sprintf("tf-test-%s", acctest.RandString(t, 10))
hc := fmt.Sprintf("tf-test-%s", acctest.RandString(t, 10))

acctest.VcrTest(t, resource.TestCase{
PreCheck: func() { acctest.AccTestPreCheck(t) },
Expand Down

0 comments on commit d01b053

Please sign in to comment.