We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23522f3 commit 806b1a6Copy full SHA for 806b1a6
plan_test.go
@@ -161,12 +161,12 @@ func TestPlan_actionInvocations(t *testing.T) {
161
Address: "action.bufo_print.success",
162
Type: "bufo_print",
163
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"),
+ ConfigValues: map[string]interface{}{
+ "color": nil,
+ "name": "bufo-the-builder",
+ "ratio": nil,
168
},
169
- ConfigSensitive: json.RawMessage("{}"),
+ ConfigSensitive: map[string]interface{}{},
170
ProviderName: "registry.terraform.io/austinvalle/bufo",
171
LifecycleActionTrigger: nil,
172
InvokeActionTrigger: &InvokeActionTrigger{},
0 commit comments