Skip to content

Commit

Permalink
style: format code with Gofumpt and Prettier
Browse files Browse the repository at this point in the history
This commit fixes the style issues introduced in e2785d8 according to the output
from Gofumpt and Prettier.

Details: #2505
  • Loading branch information
deepsource-autofix[bot] authored Jul 15, 2024
1 parent e2785d8 commit f2a7557
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/e2e/kubernetes/client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,8 @@ func (cli *client) Portforward(
}

func (cli *client) GetPod(ctx context.Context, namespace,
name string) (*corev1.Pod, error) {
name string,
) (*corev1.Pod, error) {
pod, err := cli.clientset.CoreV1().Pods(
namespace,
).Get(ctx, name, metav1.GetOptions{})
Expand Down

0 comments on commit f2a7557

Please sign in to comment.