From 43a2fb8b47581caf5aa4b9114147f077a2c0aad5 Mon Sep 17 00:00:00 2001 From: Jaganathan P <156800415+jagan2221@users.noreply.github.com> Date: Wed, 4 Dec 2024 16:36:28 +0530 Subject: [PATCH] Update provider_test.go --- pkg/configprovider/opampprovider/provider_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/configprovider/opampprovider/provider_test.go b/pkg/configprovider/opampprovider/provider_test.go index bd1a7a5da4..c6fee6484d 100644 --- a/pkg/configprovider/opampprovider/provider_test.go +++ b/pkg/configprovider/opampprovider/provider_test.go @@ -129,7 +129,7 @@ func TestRemotelyManagedFlowDisabled(t *testing.T) { } }() - configPath := "opamp:" + absolutePath(t, filepath.Join("testdata", "configMergeDisabled.yaml")) + configPath := "opamp:" + absolutePath(t, filepath.Join("testdata", "config_new_merge_disabled.yaml")) t.Logf("loading opamp config file: %s", configPath) ret, err := p.Retrieve(context.Background(), configPath, nil) @@ -164,7 +164,7 @@ func TestRemotelyManagedFlowEnabled(t *testing.T) { } }() - configPath := "opamp:" + absolutePath(t, filepath.Join("testdata", "configMergeEnabled.yaml")) + configPath := "opamp:" + absolutePath(t, filepath.Join("testdata", "config_new_merge_enabled.yaml")) t.Logf("loading opamp config file: %s", configPath) ret, err := p.Retrieve(context.Background(), configPath, nil)