Skip to content

Commit

Permalink
fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
evenh committed Jun 6, 2019
1 parent abf72b3 commit f9454b6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion azuread/resource_group.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@ package azuread
import (
"context"
"fmt"
"log"

"github.com/terraform-providers/terraform-provider-azuread/azuread/helpers/slices"
"github.com/terraform-providers/terraform-provider-azuread/azuread/helpers/tf"
"github.com/terraform-providers/terraform-provider-azuread/azuread/helpers/validate"
"log"

"github.com/Azure/azure-sdk-for-go/services/graphrbac/1.6/graphrbac"
"github.com/google/uuid"
Expand Down
2 changes: 1 addition & 1 deletion azuread/resource_group_member_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ func testCheckAzureADGroupMemberDestroy(s *terraform.State) error {
var memberObjectID string
for members.NotDone() {
// possible members are users, groups or service principals
// we try to 'cast' each result as the correspondig type and diff
// we try to 'cast' each result as the corresponding type and diff
// if we found the object we're looking for
user, _ := members.Value().AsUser()
if user != nil {
Expand Down

0 comments on commit f9454b6

Please sign in to comment.