diff --git a/internal/stacks/stackruntime/hooks/component_instance.go b/internal/stacks/stackruntime/hooks/component_instance.go index 24b55c02f5..cfae9ada9a 100644 --- a/internal/stacks/stackruntime/hooks/component_instance.go +++ b/internal/stacks/stackruntime/hooks/component_instance.go @@ -53,14 +53,14 @@ func (s ComponentInstanceStatus) ForProtobuf() stacks.StackChangeProgress_Compon // ComponentInstanceChange is the argument type for hook callbacks which // signal a set of planned or applied changes for a component instance. type ComponentInstanceChange struct { - Addr stackaddrs.AbsComponentInstance - Add int - Change int - Import int - Remove int - Defer int - Move int - Forget int + Addr stackaddrs.AbsComponentInstance + Add int + Change int + Import int + Remove int + Defer int + Move int + Forget int ActionInvocation int } diff --git a/internal/stacks/stackruntime/plan_test.go b/internal/stacks/stackruntime/plan_test.go index d66a0f0383..82e46426a5 100644 --- a/internal/stacks/stackruntime/plan_test.go +++ b/internal/stacks/stackruntime/plan_test.go @@ -6474,9 +6474,9 @@ func TestPlanWithActionInvocationHooks(t *testing.T) { InstanceAddrs: []stackaddrs.AbsComponentInstance{webComponentInstance}, }, }, - PendingComponentInstancePlan: collections.NewSet(webComponentInstance), - BeginComponentInstancePlan: collections.NewSet(webComponentInstance), - EndComponentInstancePlan: collections.NewSet(webComponentInstance), + PendingComponentInstancePlan: collections.NewSet(webComponentInstance), + BeginComponentInstancePlan: collections.NewSet(webComponentInstance), + EndComponentInstancePlan: collections.NewSet(webComponentInstance), ReportResourceInstanceStatus: []*hooks.ResourceInstanceStatusHookData{ { Addr: testResourceObject,