Skip to content

Commit

Permalink
Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
bendbennett committed Oct 17, 2023
1 parent 4bba62f commit 264c2bd
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 0 deletions.
2 changes: 2 additions & 0 deletions datasource/attribute_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ import (
)

func TestAttributes_Validate(t *testing.T) {
t.Parallel()

testCases := map[string]struct {
attributes datasource.Attributes
request datasource.AttributeValidateRequest
Expand Down
2 changes: 2 additions & 0 deletions provider/attribute_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ import (
)

func TestAttributes_Validate(t *testing.T) {
t.Parallel()

testCases := map[string]struct {
attributes provider.Attributes
request provider.AttributeValidateRequest
Expand Down
2 changes: 2 additions & 0 deletions resource/attribute_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ import (
)

func TestAttributes_Validate(t *testing.T) {
t.Parallel()

testCases := map[string]struct {
attributes resource.Attributes
request resource.AttributeValidateRequest
Expand Down
6 changes: 6 additions & 0 deletions spec/specification_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3095,6 +3095,8 @@ func TestSpecification_JSONUnmarshal_Version0_1(t *testing.T) {
}

func TestSpecification_Validate_DataSources(t *testing.T) {
t.Parallel()

testCases := map[string]struct {
spec spec.Specification
expectedError error
Expand Down Expand Up @@ -3904,6 +3906,8 @@ func TestSpecification_Validate_DataSources(t *testing.T) {
}

func TestSpecification_Validate_Provider(t *testing.T) {
t.Parallel()

testCases := map[string]struct {
spec spec.Specification
expectedError error
Expand Down Expand Up @@ -4630,6 +4634,8 @@ func TestSpecification_Validate_Provider(t *testing.T) {
}

func TestSpecification_Validate_Resources(t *testing.T) {
t.Parallel()

testCases := map[string]struct {
spec spec.Specification
expectedError error
Expand Down

0 comments on commit 264c2bd

Please sign in to comment.