Skip to content

Commit d99c8fa

Browse files
committed
fix: update git buildpack URL to use main branch after go-migration merge
The integration test was hardcoded to use #feature/go-migration branch which no longer exists after being merged into main, causing CF cells to fail cloning.
1 parent 2d234ff commit d99c8fa

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/integration/tomcat_test.go

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,13 +282,16 @@ func testTomcat(platform switchblade.Platform, fixtures string) func(*testing.T,
282282
// directly to `cf push -b <url>`). Switchblade's Docker platform only supports
283283
// HTTP downloads via buildpacks_cache.go:64 http.Get(), not git clone.
284284
// The test must run on CF platform to properly test git URL buildpack deployment.
285+
//
286+
// NOTE: The original test used #feature/go-migration but that branch was merged
287+
// into main, so we now use the default branch (main).
285288

286289
if settings.Platform == "docker" {
287290
t.Skip("Git URL buildpacks require CF platform - Docker platform cannot clone git repos")
288291
}
289292

290293
deployment, logs, err := platform.Deploy.
291-
WithBuildpacks("https://github.com/cloudfoundry/java-buildpack.git#feature/go-migration").
294+
WithBuildpacks("https://github.com/cloudfoundry/java-buildpack.git").
292295
WithEnv(map[string]string{
293296
"BP_JAVA_VERSION": "21",
294297
}).

0 commit comments

Comments
 (0)