From 1592070a1468be7e0449dda3ec5a14f61e3509e2 Mon Sep 17 00:00:00 2001 From: HiteshRepo Date: Fri, 2 Feb 2024 20:30:30 +0530 Subject: [PATCH] comment some more --- src/internal/operations/test/m365/helper.go | 23 ++++++++++----------- 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/src/internal/operations/test/m365/helper.go b/src/internal/operations/test/m365/helper.go index 2bfd46865..ece095193 100644 --- a/src/internal/operations/test/m365/helper.go +++ b/src/internal/operations/test/m365/helper.go @@ -20,7 +20,6 @@ import ( "github.com/alcionai/corso/src/internal/model" "github.com/alcionai/corso/src/internal/operations/inject" "github.com/alcionai/corso/src/internal/tester" - "github.com/alcionai/corso/src/internal/tester/tconfig" "github.com/alcionai/corso/src/pkg/account" "github.com/alcionai/corso/src/pkg/backup" "github.com/alcionai/corso/src/pkg/backup/details" @@ -387,20 +386,20 @@ func NewIntegrationTesterSetup(t *testing.T) IntgTesterSetup { graph.InitializeConcurrencyLimiter(ctx, true, 4) - a := tconfig.NewM365Account(t) - creds, err := a.M365Config() - require.NoError(t, err, clues.ToCore(err)) + // a := tconfig.NewM365Account(t) + // creds, err := a.M365Config() + // require.NoError(t, err, clues.ToCore(err)) - counter := count.New() + // counter := count.New() - its.AC, err = api.NewClient( - creds, - control.DefaultOptions(), - counter) - require.NoError(t, err, clues.ToCore(err)) + // its.AC, err = api.NewClient( + // creds, + // control.DefaultOptions(), + // counter) + // require.NoError(t, err, clues.ToCore(err)) - its.GockAC, err = GockClient(creds, counter) - require.NoError(t, err, clues.ToCore(err)) + // its.GockAC, err = GockClient(creds, counter) + // require.NoError(t, err, clues.ToCore(err)) // its.User = userIDs(t, tconfig.M365UserID(t), its.AC) // its.SecondaryUser = userIDs(t, tconfig.SecondaryM365UserID(t), its.AC)