From e5b1291d36841611881f35dc716c8a7d0632ce82 Mon Sep 17 00:00:00 2001 From: ashmrtn Date: Tue, 9 May 2023 15:51:30 -0700 Subject: [PATCH] Fix parse error in sanity tests (#3349) #### 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 - [x] :bug: Bugfix - [ ] :world_map: Documentation - [ ] :robot: Supportability/Tests - [x] :computer: CI/Deployment - [ ] :broom: Tech Debt/Cleanup #### Test Plan - [x] :muscle: Manual - [ ] :zap: Unit test - [ ] :green_heart: E2E --- .github/workflows/sanity-test.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/sanity-test.yaml b/.github/workflows/sanity-test.yaml index 20f830b82..e011069e0 100644 --- a/.github/workflows/sanity-test.yaml +++ b/.github/workflows/sanity-test.yaml @@ -427,7 +427,7 @@ jobs: id: sharepoint-test run: | set -euo pipefail - echo -e "\nBackup SharePoint test\n" >> ${CORSO_LOG_FILE} + echo -e "\nBackup SharePoint test\n" >> ${CORSO_LOG_FILE} ./corso backup create sharepoint \ --no-stats \ @@ -450,7 +450,7 @@ jobs: - name: Backup sharepoint list test run: | set -euo pipefail - echo -e "\nBackup List SharePoint test\n" >> ${CORSO_LOG_FILE} + echo -e "\nBackup List SharePoint test\n" >> ${CORSO_LOG_FILE} ./corso backup list sharepoint \ --no-stats \ @@ -467,7 +467,7 @@ jobs: - name: Backup sharepoint list single backup test run: | set -euo pipefail - echo -e "\nBackup List single backup SharePoint test\n" >> ${CORSO_LOG_FILE} + echo -e "\nBackup List single backup SharePoint test\n" >> ${CORSO_LOG_FILE} ./corso backup list sharepoint \ --no-stats \ @@ -486,7 +486,7 @@ jobs: id: sharepoint-restore-test run: | set -euo pipefail - echo -e "\nRestore SharePoint test\n" >> ${CORSO_LOG_FILE} + echo -e "\nRestore SharePoint test\n" >> ${CORSO_LOG_FILE} ./corso restore sharepoint \ --no-stats \ @@ -513,7 +513,7 @@ jobs: id: sharepoint-incremental-test run: | set -euo pipefail - echo -e "\nIncremental Backup SharePoint test\n" >> ${CORSO_LOG_FILE} + echo -e "\nIncremental Backup SharePoint test\n" >> ${CORSO_LOG_FILE} ./corso backup create sharepoint \ --no-stats \ @@ -537,7 +537,7 @@ jobs: id: sharepoint-incremental-restore-test run: | set -euo pipefail - echo -e "\nIncremental Restore SharePoint test\n" >> ${CORSO_LOG_FILE} + echo -e "\nIncremental Restore SharePoint test\n" >> ${CORSO_LOG_FILE} ./corso restore sharepoint \ --no-stats \