Skip to content

Commit 8701c9b

Browse files
authored
Fix acc test findings (#445)
* remove extra space in prompt message * fix info message
1 parent fce9c06 commit 8701c9b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

internal/cmd/beta/network/delete/delete.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ func NewCmd(p *print.Printer) *cobra.Command {
6363
}
6464

6565
if !model.AssumeYes {
66-
prompt := fmt.Sprintf("Are you sure you want to delete network %q?", networkLabel)
66+
prompt := fmt.Sprintf("Are you sure you want to delete network %q?", networkLabel)
6767
err = p.PromptForConfirmation(prompt)
6868
if err != nil {
6969
return err

internal/cmd/beta/network/list/list.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ func NewCmd(p *print.Printer) *cobra.Command {
7575
p.Debug(print.ErrorLevel, "get project name: %v", err)
7676
projectLabel = model.ProjectId
7777
}
78-
p.Info("No networks found for organization %q\n", projectLabel)
78+
p.Info("No networks found for project %q\n", projectLabel)
7979
return nil
8080
}
8181

0 commit comments

Comments
 (0)