File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ require (
66 github.com/google/go-cmp v0.6.0
77 github.com/hashicorp/go-version v1.6.0
88 github.com/hashicorp/hc-install v0.6.4
9- github.com/hashicorp/terraform-json v0.21 .0
9+ github.com/hashicorp/terraform-json v0.22 .0
1010 github.com/zclconf/go-cty v1.14.4
1111 github.com/zclconf/go-cty-debug v0.0.0-20191215020915-b22d67c1ba0b
1212)
Original file line number Diff line number Diff line change @@ -40,8 +40,8 @@ github.com/hashicorp/go-version v1.6.0 h1:feTTfFNnjP967rlCxM/I9g701jU+RN74YKx2mO
4040github.com/hashicorp/go-version v1.6.0 /go.mod h1:fltr4n8CU8Ke44wwGCBoEymUuxUHl09ZGVZPK5anwXA =
4141github.com/hashicorp/hc-install v0.6.4 h1:QLqlM56/+SIIGvGcfFiwMY3z5WGXT066suo/v9Km8e0 =
4242github.com/hashicorp/hc-install v0.6.4 /go.mod h1:05LWLy8TD842OtgcfBbOT0WMoInBMUSHjmDx10zuBIA =
43- github.com/hashicorp/terraform-json v0.21 .0 h1:9NQxbLNqPbEMze+S6+YluEdXgJmhQykRyRNd+zTI05U =
44- github.com/hashicorp/terraform-json v0.21 .0 /go.mod h1:qdeBs11ovMzo5puhrRibdD6d2Dq6TyE/28JiU4tIQxk =
43+ github.com/hashicorp/terraform-json v0.22 .0 h1:cTZejr05cbovFmQ05MeJ43CPrn/+1hUBG7KDTcRwBc0 =
44+ github.com/hashicorp/terraform-json v0.22 .0 /go.mod h1:JbWSQCLFSXFFhg42T7l9iJwdGXBYV8fmmD6o/ML4p3A =
4545github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 h1:BQSFePA1RWJOlocH6Fxy8MmwDt+yVQYULKfN0RoTN8A =
4646github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 /go.mod h1:1lJo3i6rXxKeerYnT8Nvf0QmHCRC1n8sfWVwXF2Frvo =
4747github.com/kevinburke/ssh_config v1.2.0 h1:x584FjTGwHzMwvHx18PXxbBVzfnxogHaAReU4gf13a4 =
Original file line number Diff line number Diff line change @@ -1080,6 +1080,7 @@ func TestShowPlanFileBigInt(t *testing.T) {
10801080 cmpopts .IgnoreFields (tfjson.Config {}, "ProviderConfigs" ),
10811081 cmpopts .IgnoreFields (tfjson.Plan {}, "FormatVersion" ),
10821082 cmpopts .IgnoreFields (tfjson.Plan {}, "Timestamp" ),
1083+ cmpopts .IgnoreFields (tfjson.Plan {}, "Complete" ),
10831084 }
10841085
10851086 if diff := diffPlan (expected , actual , opts ... ); diff != "" {
@@ -1204,6 +1205,7 @@ func TestShowPlanFileFloat64(t *testing.T) {
12041205 cmpopts .IgnoreFields (tfjson.Config {}, "ProviderConfigs" ),
12051206 cmpopts .IgnoreFields (tfjson.Plan {}, "FormatVersion" ),
12061207 cmpopts .IgnoreFields (tfjson.Plan {}, "Timestamp" ),
1208+ cmpopts .IgnoreFields (tfjson.Plan {}, "Complete" ),
12071209 }
12081210
12091211 if diff := diffPlan (expected , actual , opts ... ); diff != "" {
You can’t perform that action at this time.
0 commit comments