Skip to content

Commit

Permalink
Fix linter issues
Browse files Browse the repository at this point in the history
  • Loading branch information
majori committed Nov 7, 2023
1 parent 2398727 commit e47198e
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion internal/cli/check_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ func iRunCheck(ctx context.Context, recipe string) (context.Context, error) {
}

cmd.SetArgs(args)
cmd.Execute()
_ = cmd.Execute()
return ctx, nil
}

Expand Down
2 changes: 1 addition & 1 deletion internal/cli/create_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ func iRunCreate(ctx context.Context, recipe string) (context.Context, error) {
}

cmd.SetArgs(args)
cmd.Execute()
_ = cmd.Execute()
return ctx, nil
}
2 changes: 1 addition & 1 deletion internal/cli/eject_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ func iRunEject(ctx context.Context) (context.Context, error) {
}

cmd.SetArgs(args)
cmd.Execute()
_ = cmd.Execute()
return ctx, nil
}

Expand Down
2 changes: 1 addition & 1 deletion internal/cli/execute_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ func iRunExecute(ctx context.Context, recipe string) (context.Context, error) {
}

cmd.SetArgs(args)
cmd.Execute()
_ = cmd.Execute()
return ctx, nil
}

Expand Down
2 changes: 1 addition & 1 deletion internal/cli/pull_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,6 @@ func iPullRecipe(ctx context.Context, recipeName, repoName string) (context.Cont
}

cmd.SetArgs(args)
cmd.Execute()
_ = cmd.Execute()
return ctx, nil
}
2 changes: 1 addition & 1 deletion internal/cli/push_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,6 @@ func iRunPush(ctx context.Context, recipeName string) (context.Context, error) {
}

cmd.SetArgs(args)
cmd.Execute()
_ = cmd.Execute()
return ctx, nil
}
2 changes: 1 addition & 1 deletion internal/cli/test_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ func iRunTest(ctx context.Context, recipe string) (context.Context, error) {
}

cmd.SetArgs(args)
cmd.Execute()
_ = cmd.Execute()
return ctx, nil
}

Expand Down
2 changes: 1 addition & 1 deletion internal/cli/upgrade_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ func iRunUpgrade(ctx context.Context, recipe string) (context.Context, error) {
}

cmd.SetArgs(args)
cmd.Execute()
_ = cmd.Execute()
return ctx, nil
}

Expand Down
2 changes: 1 addition & 1 deletion internal/cli/validate_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ func iRunValidate(ctx context.Context, recipe string) (context.Context, error) {
}

cmd.SetArgs(args)
cmd.Execute()
_ = cmd.Execute()
return ctx, nil
}
2 changes: 1 addition & 1 deletion internal/cli/why_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ func iRunWhy(ctx context.Context, file string) (context.Context, error) {
}

cmd.SetArgs(args)
cmd.Execute()
_ = cmd.Execute()
return ctx, nil
}

0 comments on commit e47198e

Please sign in to comment.