Skip to content

Commit b28c760

Browse files
remove extra newlines
1 parent e6ad72e commit b28c760

File tree

3 files changed

+1
-5
lines changed

3 files changed

+1
-5
lines changed

internal/configs/config_test.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ func TestConfigProviderTypes(t *testing.T) {
3535
}
3636

3737
got = cfg.ProviderTypes()
38-
3938
want := []addrs.Provider{
4039
addrs.NewDefaultProvider("aws"),
4140
addrs.NewDefaultProvider("external"),

internal/terraform/hook.go

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,7 @@ type HookActionIdentity struct {
4040

4141
// If run as part of a plan / apply we also have the values below
4242
// (if CLI triggered they are not applicable)
43-
44-
TriggeringResourceAddr addrs.AbsResourceInstance
45-
43+
TriggeringResourceAddr addrs.AbsResourceInstance
4644
ActionTriggerBlockIndex int
4745
ActionsListIndex int
4846
}

internal/terraform/node_action_apply.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,6 @@ func (n *nodeActionApply) References() []*addrs.Reference {
147147

148148
// We reference each action instance that we are going to execute.
149149
for _, invocation := range n.ActionInvocations {
150-
// TODO: Think about how to get a source range
151150
refs = append(refs, &addrs.Reference{
152151
Subject: invocation.Addr.Action,
153152
})

0 commit comments

Comments
 (0)