Skip to content

Commit d12943c

Browse files
committed
Fix compilation error
1 parent 515b971 commit d12943c

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

src/python/integration/deploy_python_app_with_dynatrace_test.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ package integration_test
22

33
import (
44
"fmt"
5+
"os"
56
"os/exec"
67
"path/filepath"
78
"time"
@@ -26,10 +27,10 @@ var _ = Describe("CF Python Buildpack", func() {
2627
}
2728

2829
dynatraceAPI = cutlass.New(Fixtures("fake_dynatrace_api"))
29-
30+
3031
// TODO: remove this once go-buildpack runs on cflinuxfs4
3132
// This is done to have the dynatrace broker app written in go up and running
32-
if os.Getenv("CF_STACK" == "cflinuxfs4"{
33+
if os.Getenv("CF_STACK") == "cflinuxfs4" {
3334
dynatraceAPI.Stack = "cflinuxfs3"
3435
}
3536
dynatraceAPI.SetEnv("BP_DEBUG", "true")

0 commit comments

Comments
 (0)