fix output capitalization
This commit is contained in:
parent
2f608e3772
commit
ac779ba82a
2 changed files with 2 additions and 2 deletions
|
|
@ -59,7 +59,7 @@ func listRun(opts *ListOptions) error {
|
|||
}
|
||||
|
||||
if len(licenses) == 0 {
|
||||
return cmdutil.NewNoResultsError("no licenses found")
|
||||
return cmdutil.NewNoResultsError("No licenses found")
|
||||
}
|
||||
|
||||
return renderLicenseTemplatesTable(licenses, opts)
|
||||
|
|
|
|||
|
|
@ -157,7 +157,7 @@ func TestListRun(t *testing.T) {
|
|||
wantStdout: "",
|
||||
wantStderr: "",
|
||||
wantErr: true,
|
||||
errMsg: "no licenses found",
|
||||
errMsg: "No licenses found",
|
||||
opts: &ListOptions{},
|
||||
},
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue