This commit is contained in:
ryanfkeepers 2023-01-04 09:14:18 -07:00
parent c895fca1e1
commit a4b6309661
2 changed files with 6 additions and 6 deletions

View File

@ -15,7 +15,7 @@ import (
// CreateMailFolder makes a mail folder iff a folder of the same name does not exist // CreateMailFolder makes a mail folder iff a folder of the same name does not exist
// Reference: https://docs.microsoft.com/en-us/graph/api/user-post-mailfolders?view=graph-rest-1.0&tabs=http // Reference: https://docs.microsoft.com/en-us/graph/api/user-post-mailfolders?view=graph-rest-1.0&tabs=http
func (c Client) CreateMailFolder( func (c Client) NewName(
ctx context.Context, ctx context.Context,
user, folder string, user, folder string,
) (models.MailFolderable, error) { ) (models.MailFolderable, error) {

View File

@ -149,7 +149,7 @@ func (suite *ExchangeRestoreSuite) TestRestoreExchangeObject() {
cleanupFunc: suite.ac.DeleteMailFolder, cleanupFunc: suite.ac.DeleteMailFolder,
destination: func(t *testing.T, ctx context.Context) string { destination: func(t *testing.T, ctx context.Context) string {
folderName := "TestRestoreMailObject: " + common.FormatSimpleDateTime(now) folderName := "TestRestoreMailObject: " + common.FormatSimpleDateTime(now)
folder, err := suite.ac.CreateMailFolder(ctx, userID, folderName) folder, err := suite.ac.NewName(ctx, userID, folderName)
require.NoError(t, err) require.NoError(t, err)
return *folder.GetId() return *folder.GetId()
@ -162,7 +162,7 @@ func (suite *ExchangeRestoreSuite) TestRestoreExchangeObject() {
cleanupFunc: suite.ac.DeleteMailFolder, cleanupFunc: suite.ac.DeleteMailFolder,
destination: func(t *testing.T, ctx context.Context) string { destination: func(t *testing.T, ctx context.Context) string {
folderName := "TestRestoreMailwithAttachment: " + common.FormatSimpleDateTime(now) folderName := "TestRestoreMailwithAttachment: " + common.FormatSimpleDateTime(now)
folder, err := suite.ac.CreateMailFolder(ctx, userID, folderName) folder, err := suite.ac.NewName(ctx, userID, folderName)
require.NoError(t, err) require.NoError(t, err)
return *folder.GetId() return *folder.GetId()
@ -175,7 +175,7 @@ func (suite *ExchangeRestoreSuite) TestRestoreExchangeObject() {
cleanupFunc: suite.ac.DeleteMailFolder, cleanupFunc: suite.ac.DeleteMailFolder,
destination: func(t *testing.T, ctx context.Context) string { destination: func(t *testing.T, ctx context.Context) string {
folderName := "TestRestoreMailwithLargeAttachment: " + common.FormatSimpleDateTime(now) folderName := "TestRestoreMailwithLargeAttachment: " + common.FormatSimpleDateTime(now)
folder, err := suite.ac.CreateMailFolder(ctx, userID, folderName) folder, err := suite.ac.NewName(ctx, userID, folderName)
require.NoError(t, err) require.NoError(t, err)
return *folder.GetId() return *folder.GetId()
@ -188,7 +188,7 @@ func (suite *ExchangeRestoreSuite) TestRestoreExchangeObject() {
cleanupFunc: suite.ac.DeleteMailFolder, cleanupFunc: suite.ac.DeleteMailFolder,
destination: func(t *testing.T, ctx context.Context) string { destination: func(t *testing.T, ctx context.Context) string {
folderName := "TestRestoreMailwithAttachments: " + common.FormatSimpleDateTime(now) folderName := "TestRestoreMailwithAttachments: " + common.FormatSimpleDateTime(now)
folder, err := suite.ac.CreateMailFolder(ctx, userID, folderName) folder, err := suite.ac.NewName(ctx, userID, folderName)
require.NoError(t, err) require.NoError(t, err)
return *folder.GetId() return *folder.GetId()
@ -201,7 +201,7 @@ func (suite *ExchangeRestoreSuite) TestRestoreExchangeObject() {
cleanupFunc: suite.ac.DeleteMailFolder, cleanupFunc: suite.ac.DeleteMailFolder,
destination: func(t *testing.T, ctx context.Context) string { destination: func(t *testing.T, ctx context.Context) string {
folderName := "TestRestoreMailwithReferenceAttachment: " + common.FormatSimpleDateTime(now) folderName := "TestRestoreMailwithReferenceAttachment: " + common.FormatSimpleDateTime(now)
folder, err := suite.ac.CreateMailFolder(ctx, userID, folderName) folder, err := suite.ac.NewName(ctx, userID, folderName)
require.NoError(t, err) require.NoError(t, err)
return *folder.GetId() return *folder.GetId()