diff --git a/tests/integration/helper.go b/tests/integration/helper.go index d0ba6267..f79088f0 100644 --- a/tests/integration/helper.go +++ b/tests/integration/helper.go @@ -14,12 +14,17 @@ import ( "strings" "testing" + "github.com/onsi/gomega/format" "github.com/paketo-buildpacks/occam" "github.com/paketo-buildpacks/packit/v2/pexec" "github.com/onsi/gomega" ) +func init() { + format.MaxLength = 0 +} + func GetFreePort() (string, error) { addr, err := net.ResolveTCPAddr("tcp", "127.0.0.1:0") if err != nil {