Skip to content

Commit

Permalink
Update fixtures and test for process changes
Browse files Browse the repository at this point in the history
  • Loading branch information
joshwlewis committed Dec 12, 2024
1 parent 050f2f1 commit a81adb6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
3 changes: 1 addition & 2 deletions buildpacks/go/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

- Now prefers processes set by Procfile, and no longer adds it's own processes
if a Procfile is present.
- Now prefers processes set by Procfile, and no longer adds it's own processes if a Procfile is present.

## [0.4.7] - 2024-12-06

Expand Down
2 changes: 1 addition & 1 deletion buildpacks/go/tests/fixtures/procfile_http_123/go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module example.com/basic_http_123
module example.com/procfile_http_123

go 1.23
2 changes: 1 addition & 1 deletion buildpacks/go/tests/fixtures/procfile_http_123/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
)

func root(w http.ResponseWriter, req *http.Request) {
fmt.Fprintf(w, "basic_http_122")
fmt.Fprintf(w, "procfile_http_123")
}

func main() {
Expand Down
1 change: 1 addition & 0 deletions buildpacks/go/tests/integration_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,7 @@ fn test_worker_http_118() {
&[
"Detected Go version requirement: ~1.18.1",
"Installing go1.18.",
"Detected processes",
"example.com/worker_http_118/cmd/web",
"example.com/worker_http_118/cmd/worker",
],
Expand Down

0 comments on commit a81adb6

Please sign in to comment.