From 2a93dc9caf67b199fe13b34cf615329d9161228c Mon Sep 17 00:00:00 2001 From: Danny Adams Date: Wed, 25 Jan 2023 07:59:09 -0500 Subject: [PATCH] Updates to graph_connector component and helper_test files. Reverts back to msgraph-sdk-go. --- src/internal/connector/graph_connector.go | 2 +- src/internal/connector/graph_connector_helper_test.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/internal/connector/graph_connector.go b/src/internal/connector/graph_connector.go index c8ef5fc70..68f03d048 100644 --- a/src/internal/connector/graph_connector.go +++ b/src/internal/connector/graph_connector.go @@ -9,8 +9,8 @@ import ( "sync" "github.com/microsoft/kiota-abstractions-go/serialization" - "github.com/microsoftgraph/msgraph-beta-sdk-go/models" msgraphgocore "github.com/microsoftgraph/msgraph-sdk-go-core" + "github.com/microsoftgraph/msgraph-sdk-go/models" "github.com/pkg/errors" "golang.org/x/exp/maps" diff --git a/src/internal/connector/graph_connector_helper_test.go b/src/internal/connector/graph_connector_helper_test.go index 953855957..e9e0e5e95 100644 --- a/src/internal/connector/graph_connector_helper_test.go +++ b/src/internal/connector/graph_connector_helper_test.go @@ -6,7 +6,7 @@ import ( "reflect" "testing" - "github.com/microsoftgraph/msgraph-beta-sdk-go/models" + "github.com/microsoftgraph/msgraph-sdk-go/models" "github.com/pkg/errors" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require"