Skip to content

Commit

Permalink
gofumpt
Browse files Browse the repository at this point in the history
  • Loading branch information
zliang-akamai committed Jan 7, 2025
1 parent 65aca34 commit 2b7d0ac
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions object_storage_endpoints.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ const (

// ObjectStorageEndpoint represents a linode object storage endpoint object
type ObjectStorageEndpoint struct {
Region string `json:"region"`
S3Endpoint *string `json:"s3_endpoint"`
Region string `json:"region"`
S3Endpoint *string `json:"s3_endpoint"`
EndpointType ObjectStorageEndpointType `json:"endpoint_type"`
}

Expand Down
2 changes: 1 addition & 1 deletion test/integration/object_storage_bucket_certs_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ func TestObjectStorageBucketCert_smoke(t *testing.T) {
t.Fatalf("failed to get bucket cert: %s", err)
}

if cert.SSL!= nil && !*cert.SSL {
if cert.SSL != nil && !*cert.SSL {
t.Fatalf("expected cert.SSL to be true; got false")
}
}

0 comments on commit 2b7d0ac

Please sign in to comment.