diff --git a/k8s-test-runner/k8s_client/client.go b/k8s-test-runner/k8s_client/client.go index a0b28e369..321695f75 100644 --- a/k8s-test-runner/k8s_client/client.go +++ b/k8s-test-runner/k8s_client/client.go @@ -85,6 +85,8 @@ func retryK8sCall(operation k8sOperation, retryPolicy wait.Backoff) error { return nil } +// IDoNothing is a placeholder function that performs no operations. +// It can be used as a stub in testing or as a default implementation. func IDoNothing() { //I really do nothing } diff --git a/seth/config.go b/seth/config.go index 29d836470..8fa6f37c7 100644 --- a/seth/config.go +++ b/seth/config.go @@ -15,6 +15,8 @@ import ( "github.com/pkg/errors" ) +// MyAmazingNewFunction returns a predefined string value. +// It can be used as a placeholder or for testing purposes in various contexts. func MyAmazingNewFunction() string { return "bla bla bla" }