From 02b8262ed930e9978ae1a35a0db0ef5a39b4d61f Mon Sep 17 00:00:00 2001 From: ryanfkeepers Date: Mon, 6 Nov 2023 16:35:25 -0700 Subject: [PATCH] fix build --- src/internal/m365/controller_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/internal/m365/controller_test.go b/src/internal/m365/controller_test.go index 21e8bbe99..f6074067d 100644 --- a/src/internal/m365/controller_test.go +++ b/src/internal/m365/controller_test.go @@ -260,7 +260,7 @@ func (suite *ControllerUnitSuite) TestPopulateOwnerIDAndNamesFrom_nilCheck() { ctx, flush := tester.NewContext(t) defer flush() - ctrl := &Controller{ownerLookup: nil} + ctrl := &Controller{resourceHandler: nil} _, err := ctrl.PopulateProtectedResourceIDAndName(ctx, "", nil) require.ErrorIs(t, err, ErrNoResourceLookup, clues.ToCore(err))