From 450d76518e3259bf47751d6677744f7a0d759891 Mon Sep 17 00:00:00 2001 From: Matheus Macabu Date: Wed, 19 Mar 2025 09:14:26 +0100 Subject: [PATCH] Chore: Remove print from fake service account svc (#102369) --- pkg/services/serviceaccounts/tests/fakes.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/pkg/services/serviceaccounts/tests/fakes.go b/pkg/services/serviceaccounts/tests/fakes.go index 6e2a4427338..294069398d9 100644 --- a/pkg/services/serviceaccounts/tests/fakes.go +++ b/pkg/services/serviceaccounts/tests/fakes.go @@ -2,7 +2,6 @@ package tests import ( "context" - "fmt" "github.com/grafana/grafana/pkg/services/apikey" "github.com/grafana/grafana/pkg/services/serviceaccounts" @@ -58,7 +57,6 @@ func (f *FakeServiceAccountService) MigrateApiKey(ctx context.Context, orgID, ke } func (f *FakeServiceAccountService) MigrateApiKeysToServiceAccounts(ctx context.Context, orgID int64) (*serviceaccounts.MigrationResult, error) { - fmt.Printf("fake migration result: %v", f.ExpectedMigrationResult) return f.ExpectedMigrationResult, f.ExpectedErr }