From 8186194682dfeccc7ee05c2ae654ce06d2c70b3f Mon Sep 17 00:00:00 2001 From: Forest Eckhardt Date: Wed, 25 Sep 2024 17:20:10 -0400 Subject: [PATCH] Increase disk allocation for this test --- src/php/integration/deploy_a_php_app_with_newrelic_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/src/php/integration/deploy_a_php_app_with_newrelic_test.go b/src/php/integration/deploy_a_php_app_with_newrelic_test.go index dff2869ed..6b30b908d 100644 --- a/src/php/integration/deploy_a_php_app_with_newrelic_test.go +++ b/src/php/integration/deploy_a_php_app_with_newrelic_test.go @@ -20,6 +20,7 @@ var _ = Describe("CF PHP Buildpack", func() { It("succeeds", func() { app = cutlass.New(Fixtures("with_newrelic")) + app.Disk = "2GB" app.SetEnv("COMPOSER_GITHUB_OAUTH_TOKEN", os.Getenv("COMPOSER_GITHUB_OAUTH_TOKEN")) app.SetEnv("BP_DEBUG", "true") PushAppAndConfirm(app)