Skip to content

Commit 806b1a6

Browse files
committed
Fix tests after type change
1 parent 23522f3 commit 806b1a6

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

plan_test.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -161,12 +161,12 @@ func TestPlan_actionInvocations(t *testing.T) {
161161
Address: "action.bufo_print.success",
162162
Type: "bufo_print",
163163
Name: "success",
164-
ConfigValues: map[string]json.RawMessage{
165-
"color": json.RawMessage("null"),
166-
"name": json.RawMessage(`"bufo-the-builder"`),
167-
"ratio": json.RawMessage("null"),
164+
ConfigValues: map[string]interface{}{
165+
"color": nil,
166+
"name": "bufo-the-builder",
167+
"ratio": nil,
168168
},
169-
ConfigSensitive: json.RawMessage("{}"),
169+
ConfigSensitive: map[string]interface{}{},
170170
ProviderName: "registry.terraform.io/austinvalle/bufo",
171171
LifecycleActionTrigger: nil,
172172
InvokeActionTrigger: &InvokeActionTrigger{},

0 commit comments

Comments
 (0)