From 5145452c4bab82679ab8ffcfe41caf5c2f8c2ece Mon Sep 17 00:00:00 2001 From: Chris Randles Date: Sun, 15 Sep 2024 21:18:07 -0400 Subject: [PATCH] feat: add Test example skipping features Signed-off-by: Chris Randles --- examples/benchmark_tests/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/benchmark_tests/README.md b/examples/benchmark_tests/README.md index ae1f4103..5627fc45 100644 --- a/examples/benchmark_tests/README.md +++ b/examples/benchmark_tests/README.md @@ -13,7 +13,7 @@ func BenchmarkListPods(b *testing.B) { // ...your client is ready you use -- or use the `*rest.Config` to create your preferred client } -func TestExample(t *testing.T) { +func TestListPods(t *testing.T) { client, err := testenv.EnvConf().NewClient() // ... }