@@ -3,15 +3,13 @@ package tfbridgetests
33import (
44 "context"
55 "math/big"
6- "os"
76 "testing"
87
98 "github.com/hashicorp/terraform-plugin-framework/resource"
109 rschema "github.com/hashicorp/terraform-plugin-framework/resource/schema"
1110 "github.com/hashicorp/terraform-plugin-framework/resource/schema/planmodifier"
1211 "github.com/hashicorp/terraform-plugin-framework/resource/schema/stringplanmodifier"
1312 "github.com/hexops/autogold/v2"
14- "github.com/pulumi/pulumi/sdk/v3/go/common/util/cmdutil"
1513 "github.com/zclconf/go-cty/cty"
1614
1715 pb "github.com/pulumi/pulumi-terraform-bridge/v3/pkg/pf/internal/providerbuilder"
@@ -184,10 +182,6 @@ func TestPFDetailedDiffStringAttribute(t *testing.T) {
184182
185183func TestPFDetailedDiffDynamicType (t * testing.T ) {
186184 t .Parallel ()
187- if d , ok := os .LookupEnv ("PULUMI_RAW_STATE_DELTA_ENABLED" ); ok && cmdutil .IsTruthy (d ) {
188- // TODO[pulumi/pulumi-terraform-bridge#3078]
189- t .Skip ("Does not work with PULUMI_RAW_STATE_DELTA_ENABLED=true" )
190- }
191185
192186 attributeSchema := rschema.Schema {
193187 Attributes : map [string ]rschema.Attribute {
@@ -233,8 +227,6 @@ func TestPFDetailedDiffDynamicType(t *testing.T) {
233227
234228func TestPFDetailedDiffDynamicTypeWithMigration (t * testing.T ) {
235229 t .Parallel ()
236- // TODO[pulumi/pulumi-terraform-bridge#3078]
237- t .Skip ("DynamicPseudoType is not supported" )
238230
239231 attributeSchema := rschema.Schema {
240232 Attributes : map [string ]rschema.Attribute {
0 commit comments