Skip to content

Commit

Permalink
Tweak test names based on feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
roaks3 committed Oct 20, 2023
1 parent bf3eada commit 612026a
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ func testAccTpuV2Vm_full(context map[string]interface{}) string {
resource "google_tpu_v2_vm" "tpu" {
provider = google-beta

name = "tf-test-test-tpu-%{random_suffix}"
name = "tf-test-tpu-%{random_suffix}"
zone = "us-central1-c"
description = "Text description of the TPU."

Expand Down Expand Up @@ -93,7 +93,7 @@ resource "google_tpu_v2_vm" "tpu" {
resource "google_compute_disk" "disk" {
provider = google-beta

name = "tf-test-tpu-%{random_suffix}"
name = "tf-test-tpu-disk-%{random_suffix}"
image = "debian-cloud/debian-11"
size = 10
type = "pd-ssd"
Expand All @@ -109,7 +109,7 @@ func testAccTpuV2Vm_update(context map[string]interface{}, preventDestroy bool)
resource "google_tpu_v2_vm" "tpu" {
provider = google-beta

name = "tf-test-test-tpu-%{random_suffix}"
name = "tf-test-tpu-%{random_suffix}"
zone = "us-central1-c"
description = "Text description of the TPU updated."

Expand Down Expand Up @@ -148,7 +148,7 @@ resource "google_tpu_v2_vm" "tpu" {
resource "google_compute_disk" "disk" {
provider = google-beta

name = "tf-test-tpu-%{random_suffix}"
name = "tf-test-tpu-disk-%{random_suffix}"
image = "debian-cloud/debian-11"
size = 10
type = "pd-ssd"
Expand All @@ -158,7 +158,7 @@ resource "google_compute_disk" "disk" {
resource "google_compute_disk" "disk2" {
provider = google-beta

name = "tf-test-tpu2-%{random_suffix}"
name = "tf-test-tpu-disk2-%{random_suffix}"
image = "debian-cloud/debian-11"
size = 10
type = "pd-ssd"
Expand Down

0 comments on commit 612026a

Please sign in to comment.