From 95023f2adc1460f8f096ba7d4fe000e912a11e0e Mon Sep 17 00:00:00 2001 From: Florian Schade Date: Tue, 10 Jan 2023 17:11:30 +0100 Subject: [PATCH] mute newService err in tests (#5372) --- services/graph/pkg/service/v0/groups_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/graph/pkg/service/v0/groups_test.go b/services/graph/pkg/service/v0/groups_test.go index 10c341299eb..3904df68650 100644 --- a/services/graph/pkg/service/v0/groups_test.go +++ b/services/graph/pkg/service/v0/groups_test.go @@ -316,7 +316,7 @@ var _ = Describe("Groups", func() { Expect(err).ToNot(HaveOccurred()) cfg.API.GroupMembersPatchLimit = 21 - svc = service.NewService( + svc, _ = service.NewService( service.Config(cfg), service.WithGatewayClient(gatewayClient), service.EventsPublisher(&eventsPublisher),