diff --git a/src/internal/connector/graph_connector_test.go b/src/internal/connector/graph_connector_test.go index c19221f64..3702abb0a 100644 --- a/src/internal/connector/graph_connector_test.go +++ b/src/internal/connector/graph_connector_test.go @@ -652,6 +652,36 @@ func (suite *GraphConnectorIntegrationSuite) TestRestoreAndBackup() { }, }, }, + { + pathElements: []string{"Work", "Inbox"}, + category: path.EmailCategory, + items: []itemInfo{ + { + name: "someencodeditemID4", + data: mockconnector.GetMockMessageWithBodyBytes( + subjectText+"-4", + bodyText+" 4.", + bodyText+" 4.", + ), + lookupKey: subjectText + "-4", + }, + }, + }, + { + pathElements: []string{"Work", "Inbox", "Work"}, + category: path.EmailCategory, + items: []itemInfo{ + { + name: "someencodeditemID5", + data: mockconnector.GetMockMessageWithBodyBytes( + subjectText+"-5", + bodyText+" 5.", + bodyText+" 5.", + ), + lookupKey: subjectText + "-5", + }, + }, + }, }, }, {