Use microsecond granularity for exchange tests (#4695)
Switch the folder name granularity to microseconds instead of seconds to avoid collisions with other concurrent CI test runs. --- #### 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 - [ ] 🐛 Bugfix - [ ] 🗺️ Documentation - [ ] 🤖 Supportability/Tests - [x] 💻 CI/Deployment - [ ] 🧹 Tech Debt/Cleanup #### Test Plan - [x] 💪 Manual - [ ] ⚡ Unit test - [ ] 💚 E2E
This commit is contained in:
parent
ff5d83c723
commit
cb4a8cb5c7
@ -1073,7 +1073,7 @@ func (suite *ControllerIntegrationSuite) TestRestoreAndBackup_core() {
|
||||
suite.ctrl.tenant,
|
||||
[]string{suite.user},
|
||||
control.DefaultOptions(),
|
||||
control.DefaultRestoreConfig(dttm.HumanReadableDriveItem))
|
||||
control.DefaultRestoreConfig(dttm.SafeForTesting))
|
||||
})
|
||||
}
|
||||
}
|
||||
@ -1242,7 +1242,7 @@ func (suite *ControllerIntegrationSuite) TestMultiFolderBackupDifferentNames() {
|
||||
|
||||
t.Log("Backup enumeration complete")
|
||||
|
||||
restoreCfg := control.DefaultRestoreConfig(dttm.HumanReadableDriveItem)
|
||||
restoreCfg := control.DefaultRestoreConfig(dttm.SafeForTesting)
|
||||
restoreCfg.IncludePermissions = true
|
||||
|
||||
ci := stub.ConfigInfo{
|
||||
@ -1285,7 +1285,7 @@ func (suite *ControllerIntegrationSuite) TestRestoreAndBackup_largeMailAttachmen
|
||||
},
|
||||
}
|
||||
|
||||
restoreCfg := control.DefaultRestoreConfig(dttm.HumanReadableDriveItem)
|
||||
restoreCfg := control.DefaultRestoreConfig(dttm.SafeForTesting)
|
||||
restoreCfg.IncludePermissions = true
|
||||
|
||||
runRestoreBackupTest(
|
||||
|
||||
@ -1355,7 +1355,7 @@ func testRestoreFolderNamedFolderRegression(
|
||||
collectionsLatest: expected,
|
||||
}
|
||||
|
||||
restoreCfg := control.DefaultRestoreConfig(dttm.HumanReadableDriveItem)
|
||||
restoreCfg := control.DefaultRestoreConfig(dttm.SafeForTesting)
|
||||
restoreCfg.IncludePermissions = true
|
||||
|
||||
runRestoreTestWithVersion(
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user