Skip to content

Commit

Permalink
Fix resource name to have sweepable prefix (#9984)
Browse files Browse the repository at this point in the history
  • Loading branch information
SarahFrench authored Feb 27, 2024
1 parent 76474ec commit 9f8d2aa
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 9f8d2aa

Please sign in to comment.