Skip to content

Commit

Permalink
Fix acceptance tests
Browse files Browse the repository at this point in the history
  • Loading branch information
pdecat committed Jun 27, 2017
1 parent 4a781d7 commit d0b46ef
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions google/resource_storage_bucket_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -197,8 +197,8 @@ func TestAccStorageBucket_update(t *testing.T) {
"google_storage_bucket.bucket", "location", "US"),
resource.TestCheckResourceAttr(
"google_storage_bucket.bucket", "force_destroy", "false"),
resource.TestCheckResourceAttr(
"google_storage_bucket.bucket", "lifecycle_rule.#", "0"),
resource.TestCheckNoResourceAttr(
"google_storage_bucket.bucket", "lifecycle_rule.#"),
),
},
resource.TestStep{
Expand All @@ -212,8 +212,8 @@ func TestAccStorageBucket_update(t *testing.T) {
"google_storage_bucket.bucket", "location", "EU"),
resource.TestCheckResourceAttr(
"google_storage_bucket.bucket", "force_destroy", "true"),
resource.TestCheckResourceAttr(
"google_storage_bucket.bucket", "lifecycle_rule.#", "0"),
resource.TestCheckNoResourceAttr(
"google_storage_bucket.bucket", "lifecycle_rule.#"),
),
},
resource.TestStep{
Expand Down

0 comments on commit d0b46ef

Please sign in to comment.