s/private/secret/

This commit is contained in:
vilmibm 2020-09-14 11:04:37 -05:00
parent 415c2ac482
commit 2df6a6eb8c

View file

@ -32,16 +32,16 @@ func TestNewCmdList(t *testing.T) {
},
},
{
name: "private",
cli: "--private",
name: "secret",
cli: "--secret",
wants: ListOptions{
Limit: 10,
Visibility: "private",
Visibility: "secret",
},
},
{
name: "public and private",
cli: "--private --public",
name: "public and secret",
cli: "--secret --public",
wants: ListOptions{
Limit: 10,
Visibility: "all",