Skip to content

Commit

Permalink
💚 fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
budougumi0617 committed Sep 28, 2020
1 parent f4fa58a commit 00ec362
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion list_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ import (
)

func TestListCmd(t *testing.T) {
if err := ListCmd(context.TODO()); err != nil {
cmd := &ListCmd{}
if err := cmd.Run(context.TODO(), []string{}); err != nil {
t.Errorf("ListCmd() error = %v", err)
}
}

0 comments on commit 00ec362

Please sign in to comment.