provider/google: Provide valid config in acctest

The changes to allow for testing ID-only refresh conflict with passing
in "" as Config for tests. In this case we instead construct a config
with a known-non-existent bucket name.
This commit is contained in:
James Nugent 2016-05-23 17:20:19 -05:00
parent 3ca0bea7c0
commit a02b335b1d

View File

@ -117,7 +117,7 @@ func TestAccStorageForceDestroy(t *testing.T) {
),
},
resource.TestStep{
Config: "",
Config: testGoogleStorageBucketsReaderCustomAttributes("idontexist"),
Check: resource.ComposeTestCheckFunc(
testAccCheckCloudStorageBucketMissing(bucketName),
),