Skip to content

Commit

Permalink
Fix go fmt error (okta#901)
Browse files Browse the repository at this point in the history
  • Loading branch information
virgofx authored Jan 12, 2022
1 parent 29c351f commit d472d1a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions okta/resource_okta_domain_verification.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@ func resourceDomainVerificationDelete(ctx context.Context, d *schema.ResourceDat
// Status of the domain. Accepted values: NOT_STARTED, IN_PROGRESS, VERIFIED, COMPLETED
func isDomainValidated(validationStatus string) bool {
switch validationStatus {
case "VERIFIED":
case "COMPLETED":
return true
case "VERIFIED":
case "COMPLETED":
return true
}
return false
}

0 comments on commit d472d1a

Please sign in to comment.