Skip to content

Commit

Permalink
Removed un used fields
Browse files Browse the repository at this point in the history
reformatted code
  • Loading branch information
4gust committed Sep 24, 2024
1 parent 149c6aa commit e24ca26
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions apps/managedidentity/managedidentity_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ const (
type SuccessfulResponse struct {
AccessToken string `json:"access_token"`
ExpiresOn int64 `json:"expires_on"`
ExpiresIn int64 `json:"expires_in"`
Resource string `json:"resource"`
TokenType string `json:"token_type"`
}
Expand All @@ -43,7 +42,6 @@ func getSuccessfulResponse(resource string, miType ID) ([]byte, error) {
Resource: resource,
TokenType: "Bearer",
}

jsonResponse, err := json.Marshal(response)
return jsonResponse, err
}
Expand Down

0 comments on commit e24ca26

Please sign in to comment.