From 4b67bb4684ac5aa6c8a2ec0e646dced8d304ff39 Mon Sep 17 00:00:00 2001 From: Danny Adams Date: Sat, 21 Jan 2023 02:13:16 -0500 Subject: [PATCH] Bug Fix: Initialize value at 0 --- src/internal/connector/sharepoint/collection_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/internal/connector/sharepoint/collection_test.go b/src/internal/connector/sharepoint/collection_test.go index cbe0a125a..482a6b5be 100644 --- a/src/internal/connector/sharepoint/collection_test.go +++ b/src/internal/connector/sharepoint/collection_test.go @@ -101,7 +101,7 @@ func (suite *SharePointCollectionSuite) TestSharePointPageCollection_Populate() defer flush() t := suite.T() - count := 1 + count := 0 siteID := tester.M365SiteID(t) a := tester.NewM365Account(t) account, err := a.M365Config()