Fix contains check for exchange nightly tests (#5214)

Data being checked drifted due to recent changes in the test helper
and possible CLI output changes

---

#### Does this PR need a docs update or release note?

- [ ]  Yes, it's included
- [ ] 🕐 Yes, but in a later PR
- [x]  No

#### Type of change

- [ ] 🌻 Feature
- [x] 🐛 Bugfix
- [ ] 🗺️ Documentation
- [x] 🤖 Supportability/Tests
- [ ] 💻 CI/Deployment
- [ ] 🧹 Tech Debt/Cleanup

#### Test Plan

- [x] 💪 Manual
- [ ]  Unit test
- [ ] 💚 E2E
This commit is contained in:
ashmrtn 2024-02-12 12:32:25 -08:00 committed by GitHub
parent 97535e2afc
commit 03048a6ca8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -150,8 +150,8 @@ func runExchangeBackupCategoryTest(suite *BackupExchangeE2ESuite, category path.
result := recorder.String() result := recorder.String()
t.Log("backup results", result) t.Log("backup results", result)
// as an offhand check: the result should contain the m365 user id // As an offhand check: the result should contain the m365 user's email.
assert.Contains(t, result, suite.m365.User.ID) assert.Contains(t, result, suite.m365.User.Provider.Name())
} }
func (suite *BackupExchangeE2ESuite) TestExchangeBackupCmd_ServiceNotEnabled_email() { func (suite *BackupExchangeE2ESuite) TestExchangeBackupCmd_ServiceNotEnabled_email() {
@ -183,8 +183,8 @@ func runExchangeBackupServiceNotEnabledTest(suite *BackupExchangeE2ESuite, categ
result := recorder.String() result := recorder.String()
t.Log("backup results", result) t.Log("backup results", result)
// as an offhand check: the result should contain the m365 user id // As an offhand check: the result should contain the m365 user's email.
assert.Contains(t, result, suite.m365.User.ID) assert.Contains(t, result, suite.m365.User.Provider.Name())
} }
func (suite *BackupExchangeE2ESuite) TestExchangeBackupCmd_userNotFound_email() { func (suite *BackupExchangeE2ESuite) TestExchangeBackupCmd_userNotFound_email() {
@ -282,8 +282,8 @@ func (suite *BackupExchangeE2ESuite) TestBackupCreateExchange_fromConfigFile() {
result := suite.dpnd.recorder.String() result := suite.dpnd.recorder.String()
t.Log("backup results", result) t.Log("backup results", result)
// as an offhand check: the result should contain the m365 user id // As an offhand check: the result should contain the m365 user's email.
assert.Contains(t, result, suite.m365.User.ID) assert.Contains(t, result, suite.m365.User.Provider.Name())
} }
// AWS flags // AWS flags