From 722af820a583978b110acbfa28942e90854a754f Mon Sep 17 00:00:00 2001 From: Carl Bergquist Date: Wed, 27 Nov 2024 09:38:54 +0100 Subject: [PATCH] Scopes: Use new flag + app_mode=prod in integration tests (#97081) Signed-off-by: bergquist --- pkg/tests/apis/scopes/scopes_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/tests/apis/scopes/scopes_test.go b/pkg/tests/apis/scopes/scopes_test.go index eb380937dff..bf8fd293286 100644 --- a/pkg/tests/apis/scopes/scopes_test.go +++ b/pkg/tests/apis/scopes/scopes_test.go @@ -28,9 +28,9 @@ func TestIntegrationScopes(t *testing.T) { ctx := context.Background() helper := apis.NewK8sTestHelper(t, testinfra.GrafanaOpts{ - AppModeProduction: false, // required for experimental APIs + AppModeProduction: true, EnableFeatureToggles: []string{ - featuremgmt.FlagGrafanaAPIServerWithExperimentalAPIs, // Required to start the example service + featuremgmt.FlagScopeApi, // Required to register the API }, })