Skip to content

Commit f343b81

Browse files
committed
chore(builds): modify secondary confirmation info
1 parent 84e0ae0 commit f343b81

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

cmd/builds.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ func buildFetchConfirmAction(confirm, procfile, dryccpath string, save bool) err
230230
fmt.Print(msg)
231231
fmt.Scanln(&confirm)
232232
if confirm != "yes" {
233-
return fmt.Errorf("cancel the build create fetch")
233+
return fmt.Errorf("cancel the build fetch action")
234234
}
235235
}
236236
return nil

cmd/builds_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ func TestBuildsFetch(t *testing.T) {
320320
}()
321321

322322
err := cmdr.BuildsFetch("testapp", 0, procfilePath, dryccpath, "", true)
323-
if err == nil || err.Error() != "cancel the build create fetch" {
323+
if err == nil || err.Error() != "cancel the build fetch action" {
324324
t.Fatalf("expected cancellation error, got %v", err)
325325
}
326326

0 commit comments

Comments
 (0)