fix output capitalization

This commit is contained in:
bagtoad 2024-09-29 11:48:48 -06:00
parent 2f608e3772
commit ac779ba82a
2 changed files with 2 additions and 2 deletions

View file

@ -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)

View file

@ -157,7 +157,7 @@ func TestListRun(t *testing.T) {
wantStdout: "",
wantStderr: "",
wantErr: true,
errMsg: "no licenses found",
errMsg: "No licenses found",
opts: &ListOptions{},
},
}