Skip to content

Commit 3a1048c

Browse files
committed
fix double import
1 parent dcd6748 commit 3a1048c

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

internal/toproto5/action_schema_test.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ import (
88
"testing"
99

1010
"github.com/google/go-cmp/cmp"
11-
"github.com/hashicorp/terraform-plugin-framework/action/schema"
1211
actionschema "github.com/hashicorp/terraform-plugin-framework/action/schema"
1312
"github.com/hashicorp/terraform-plugin-framework/internal/toproto5"
1413
"github.com/hashicorp/terraform-plugin-go/tfprotov5"
@@ -40,7 +39,7 @@ func TestActionSchema(t *testing.T) {
4039
},
4140
},
4241
Blocks: map[string]actionschema.Block{
43-
"single_block": schema.SingleNestedBlock{
42+
"single_block": actionschema.SingleNestedBlock{
4443
Attributes: map[string]actionschema.Attribute{
4544
"bool": actionschema.BoolAttribute{
4645
Required: true,

internal/toproto6/action_schema_test.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ import (
88
"testing"
99

1010
"github.com/google/go-cmp/cmp"
11-
"github.com/hashicorp/terraform-plugin-framework/action/schema"
1211
actionschema "github.com/hashicorp/terraform-plugin-framework/action/schema"
1312
"github.com/hashicorp/terraform-plugin-framework/internal/toproto6"
1413
"github.com/hashicorp/terraform-plugin-go/tfprotov6"
@@ -40,7 +39,7 @@ func TestActionSchema(t *testing.T) {
4039
},
4140
},
4241
Blocks: map[string]actionschema.Block{
43-
"single_block": schema.SingleNestedBlock{
42+
"single_block": actionschema.SingleNestedBlock{
4443
Attributes: map[string]actionschema.Attribute{
4544
"bool": actionschema.BoolAttribute{
4645
Required: true,

0 commit comments

Comments
 (0)