diff --git a/examples/hello-world/integration/app_test.go b/examples/hello-world/integration/app_test.go index 2fd8ddf3..b959e530 100644 --- a/examples/hello-world/integration/app_test.go +++ b/examples/hello-world/integration/app_test.go @@ -55,12 +55,14 @@ func TestHelloWorld(t *testing.T) { } func assertLocalPlugins(t *testing.T, app envtest.App, expectedPlugins []pluginsconfig.Plugin) { + t.Helper() cfg, err := pluginsconfig.ParseDir(app.SourcePath()) require.NoError(t, err) require.ElementsMatch(t, expectedPlugins, cfg.Apps, "unexpected local apps") } func assertGlobalPlugins(t *testing.T, app envtest.App, expectedPlugins []pluginsconfig.Plugin) { + t.Helper() cfgPath, err := plugin.PluginsPath() require.NoError(t, err) cfg, err := pluginsconfig.ParseDir(cfgPath)