Skip to content

Commit 1c770d0

Browse files
committed
fix linter issues
1 parent 1431ef2 commit 1c770d0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/e2e/e2e_helper.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
package e2e
22

33
import (
4+
"context"
45
"os/exec"
56
"testing"
67

@@ -11,7 +12,7 @@ import (
1112

1213
func RunTF(args ...string) (string, error) {
1314
args = append([]string{"tf"}, args...)
14-
cmd := exec.Command("atlas", args...)
15+
cmd := exec.CommandContext(context.Background(), "atlas", args...)
1516
resp, err := cmd.CombinedOutput()
1617
return string(resp), err
1718
}

0 commit comments

Comments
 (0)