From 7e3d300670198b4c4556a1a91d100087e08f4cc9 Mon Sep 17 00:00:00 2001 From: Mutahhir Hayat Date: Fri, 13 Feb 2026 13:30:08 +0100 Subject: [PATCH] Go formatting --- .../stackruntime/hooks/component_instance.go | 16 ++++++++-------- internal/stacks/stackruntime/plan_test.go | 6 +++--- 2 files changed, 11 insertions(+), 11 deletions(-) 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,