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 balanaguharsha committed May 2, 2024
1 parent 821419f commit 096738b
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 096738b

Please sign in to comment.