Skip to content

Commit 99147ea

Browse files
committed
fix: Addressing lint findings
1 parent 654ec21 commit 99147ea

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

config/config_helpers_test.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
package config_test
22

33
import (
4-
"context"
54
"fmt"
65
"os"
76
"path/filepath"
@@ -368,7 +367,7 @@ unit "test" {
368367
require.NoError(t, err)
369368
opts.WorkingDir = tempDir
370369

371-
stackConfig, err := config.ReadStackConfigFile(context.Background(), l, opts, stackHclPath, nil)
370+
stackConfig, err := config.ReadStackConfigFile(t.Context(), l, opts, stackHclPath, nil)
372371
require.NoError(t, err)
373372
require.NotNil(t, stackConfig)
374373

0 commit comments

Comments
 (0)