From fc175383eb66046f980e25c86f95a92b11984e26 Mon Sep 17 00:00:00 2001 From: Edward Dowling Date: Mon, 21 Oct 2024 16:44:20 +0100 Subject: [PATCH] Fix formatting --- integrations/access/pagerduty/testlib/suite.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/integrations/access/pagerduty/testlib/suite.go b/integrations/access/pagerduty/testlib/suite.go index 5d6bb3aadb2ea..991aeef9307ca 100644 --- a/integrations/access/pagerduty/testlib/suite.go +++ b/integrations/access/pagerduty/testlib/suite.go @@ -434,8 +434,8 @@ func (s *PagerdutySuiteOSS) TestRecipientsFromAccessMonitoringRule() { var collectedNames []string var mu sync.Mutex s.appConfig.OnAccessMonitoringRuleCacheUpdateCallback = func(_ types.OpType, name string, _ *accessmonitoringrulesv1.AccessMonitoringRule) error { - mu.Lock() - collectedNames=append(collectedNames, name) + mu.Lock() + collectedNames = append(collectedNames, name) mu.Unlock() return nil }