From f4b7ca7cbe8f8c725819608ac8a93c45f821a6d0 Mon Sep 17 00:00:00 2001 From: Paddy Date: Wed, 8 Nov 2017 10:58:30 -0800 Subject: [PATCH] Fix commented out test. Because of weirdness in our test runner, our CI tries to run every test that matches the TestAcc* prefix, _even if it's commented out_. This leads to failed tests in CI for tests that aren't even running, which is annoying. This PR just lowercases the first letter of the test so it doesn't match the prefix anymore and the CI won't try to run it. --- google/import_compute_address_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/google/import_compute_address_test.go b/google/import_compute_address_test.go index ce9e07c3..d99cc8c2 100644 --- a/google/import_compute_address_test.go +++ b/google/import_compute_address_test.go @@ -33,7 +33,7 @@ func TestAccComputeAddress_importBasic(t *testing.T) { /* Disabled pending support for importing beta resources. See: https://github.com/terraform-providers/terraform-provider-google/issues/694 -func TestAccComputeAddress_importInternal(t *testing.T) { +func testAccComputeAddress_importInternal(t *testing.T) { t.Parallel() resource.Test(t, resource.TestCase{