Skip to content

Commit

Permalink
Fix error message
Browse files Browse the repository at this point in the history
  • Loading branch information
CGA1123 committed Dec 28, 2022
1 parent 4e191be commit 3619113
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/slugcmplr/test_helper.go
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ func waitForBuild(t *testing.T, h *heroku.Service, app *heroku.AppSetup) (*herok
t.Logf("(%v) status: %v", name, info.Status)

if info.Status == "failed" {
return info, fmt.Errorf("(%v) failed to setup test app: %v", name, info.FailureMessage)
return info, fmt.Errorf("(%v) failed to setup test app: %v", name, *info.FailureMessage)
}

if info.Status == "succeeded" {
Expand Down

0 comments on commit 3619113

Please sign in to comment.