@@ -23,7 +23,7 @@ import (
23
23
"github.com/hashicorp/terraform/terraform"
24
24
)
25
25
26
- func TestAccComputeAddress_AddressBasicExample (t * testing.T ) {
26
+ func TestAccComputeAddress_addressBasicExample (t * testing.T ) {
27
27
t .Parallel ()
28
28
29
29
resource .Test (t , resource.TestCase {
@@ -32,7 +32,7 @@ func TestAccComputeAddress_AddressBasicExample(t *testing.T) {
32
32
CheckDestroy : testAccCheckComputeAddressDestroy ,
33
33
Steps : []resource.TestStep {
34
34
{
35
- Config : testAccComputeAddress_AddressBasicExample (acctest .RandString (10 )),
35
+ Config : testAccComputeAddress_addressBasicExample (acctest .RandString (10 )),
36
36
},
37
37
{
38
38
ResourceName : "google_compute_address.ip_address" ,
@@ -43,7 +43,7 @@ func TestAccComputeAddress_AddressBasicExample(t *testing.T) {
43
43
})
44
44
}
45
45
46
- func testAccComputeAddress_AddressBasicExample (val string ) string {
46
+ func testAccComputeAddress_addressBasicExample (val string ) string {
47
47
return fmt .Sprintf (`
48
48
resource "google_compute_address" "ip_address" {
49
49
name = "my-address-%s"
@@ -52,7 +52,7 @@ resource "google_compute_address" "ip_address" {
52
52
)
53
53
}
54
54
55
- func TestAccComputeAddress_AddressWithSubnetworkExample (t * testing.T ) {
55
+ func TestAccComputeAddress_addressWithSubnetworkExample (t * testing.T ) {
56
56
t .Parallel ()
57
57
58
58
resource .Test (t , resource.TestCase {
@@ -61,7 +61,7 @@ func TestAccComputeAddress_AddressWithSubnetworkExample(t *testing.T) {
61
61
CheckDestroy : testAccCheckComputeAddressDestroy ,
62
62
Steps : []resource.TestStep {
63
63
{
64
- Config : testAccComputeAddress_AddressWithSubnetworkExample (acctest .RandString (10 )),
64
+ Config : testAccComputeAddress_addressWithSubnetworkExample (acctest .RandString (10 )),
65
65
},
66
66
{
67
67
ResourceName : "google_compute_address.internal_with_subnet_and_address" ,
@@ -72,7 +72,7 @@ func TestAccComputeAddress_AddressWithSubnetworkExample(t *testing.T) {
72
72
})
73
73
}
74
74
75
- func testAccComputeAddress_AddressWithSubnetworkExample (val string ) string {
75
+ func testAccComputeAddress_addressWithSubnetworkExample (val string ) string {
76
76
return fmt .Sprintf (`
77
77
resource "google_compute_network" "default" {
78
78
name = "my-network-%s"
@@ -96,7 +96,7 @@ resource "google_compute_address" "internal_with_subnet_and_address" {
96
96
)
97
97
}
98
98
99
- func TestAccComputeAddress_InstanceWithIpExample (t * testing.T ) {
99
+ func TestAccComputeAddress_instanceWithIpExample (t * testing.T ) {
100
100
t .Parallel ()
101
101
102
102
resource .Test (t , resource.TestCase {
@@ -105,7 +105,7 @@ func TestAccComputeAddress_InstanceWithIpExample(t *testing.T) {
105
105
CheckDestroy : testAccCheckComputeAddressDestroy ,
106
106
Steps : []resource.TestStep {
107
107
{
108
- Config : testAccComputeAddress_InstanceWithIpExample (acctest .RandString (10 )),
108
+ Config : testAccComputeAddress_instanceWithIpExample (acctest .RandString (10 )),
109
109
},
110
110
{
111
111
ResourceName : "google_compute_address.static" ,
@@ -116,7 +116,7 @@ func TestAccComputeAddress_InstanceWithIpExample(t *testing.T) {
116
116
})
117
117
}
118
118
119
- func testAccComputeAddress_InstanceWithIpExample (val string ) string {
119
+ func testAccComputeAddress_instanceWithIpExample (val string ) string {
120
120
return fmt .Sprintf (`
121
121
resource "google_compute_address" "static" {
122
122
name = "ipv4-address-%s"
0 commit comments