Skip to content

Commit

Permalink
tiny fix on test of service_account description
Browse files Browse the repository at this point in the history
(setting empty value tend to be more buggy than setting other values)
  • Loading branch information
tmshn committed Dec 30, 2019
1 parent df68d97 commit 6ce8bbb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ func TestAccServiceAccount_basic(t *testing.T) {
displayName := "Terraform Test"
displayName2 := "Terraform Test Update"
desc := "test description"
desc2 := "test description update"
desc2 := ""
project := getTestProjectFromEnv()
expectedEmail := fmt.Sprintf("%s@%s.iam.gserviceaccount.com", accountId, project)
resource.Test(t, resource.TestCase{
Expand Down

0 comments on commit 6ce8bbb

Please sign in to comment.