From d143a4623fbe471be301b62464ec1ae3f725f454 Mon Sep 17 00:00:00 2001 From: ashmrtn <3891298+ashmrtn@users.noreply.github.com> Date: Sun, 29 Oct 2023 14:01:31 -0700 Subject: [PATCH] Go back to old way of testing (#4574) Forgot it increments the version as it goes --- #### Does this PR need a docs update or release note? - [ ] :white_check_mark: Yes, it's included - [ ] :clock1: Yes, but in a later PR - [x] :no_entry: No #### Type of change - [ ] :sunflower: Feature - [ ] :bug: Bugfix - [ ] :world_map: Documentation - [x] :robot: Supportability/Tests - [ ] :computer: CI/Deployment - [ ] :broom: Tech Debt/Cleanup #### Issue(s) * #4569 #### Test Plan - [ ] :muscle: Manual - [x] :zap: Unit test - [ ] :green_heart: E2E --- src/internal/m365/onedrive_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/internal/m365/onedrive_test.go b/src/internal/m365/onedrive_test.go index 45ab695214..6617f1bfab 100644 --- a/src/internal/m365/onedrive_test.go +++ b/src/internal/m365/onedrive_test.go @@ -228,7 +228,7 @@ func (suite *SharePointIntegrationSuite) TestLinkSharesInheritanceRestoreAndBack func (suite *SharePointIntegrationSuite) TestRestoreFolderNamedFolderRegression() { // No reason why it couldn't work with previous versions, but this is when it got introduced. - testRestoreFolderNamedFolderRegression(suite, version.Backup) + testRestoreFolderNamedFolderRegression(suite, version.All8MigrateUserPNToID) } // --------------------------------------------------------------------------- @@ -292,7 +292,7 @@ func (suite *OneDriveIntegrationSuite) TestLinkSharesInheritanceRestoreAndBackup func (suite *OneDriveIntegrationSuite) TestRestoreFolderNamedFolderRegression() { // No reason why it couldn't work with previous versions, but this is when it got introduced. - testRestoreFolderNamedFolderRegression(suite, version.Backup) + testRestoreFolderNamedFolderRegression(suite, version.All8MigrateUserPNToID) } // ---------------------------------------------------------------------------