Fix parse error in sanity tests (#3349)

#### 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
- [ ] 🤖 Supportability/Tests
- [x] 💻 CI/Deployment
- [ ] 🧹 Tech Debt/Cleanup

#### Test Plan

- [x] 💪 Manual
- [ ]  Unit test
- [ ] 💚 E2E
This commit is contained in:
ashmrtn 2023-05-09 15:51:30 -07:00 committed by GitHub
parent 33e57c0d5a
commit e5b1291d36
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -427,7 +427,7 @@ jobs:
id: sharepoint-test id: sharepoint-test
run: | run: |
set -euo pipefail 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 \ ./corso backup create sharepoint \
--no-stats \ --no-stats \
@ -450,7 +450,7 @@ jobs:
- name: Backup sharepoint list test - name: Backup sharepoint list test
run: | run: |
set -euo pipefail 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 \ ./corso backup list sharepoint \
--no-stats \ --no-stats \
@ -467,7 +467,7 @@ jobs:
- name: Backup sharepoint list single backup test - name: Backup sharepoint list single backup test
run: | run: |
set -euo pipefail 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 \ ./corso backup list sharepoint \
--no-stats \ --no-stats \
@ -486,7 +486,7 @@ jobs:
id: sharepoint-restore-test id: sharepoint-restore-test
run: | run: |
set -euo pipefail set -euo pipefail
echo -e "\nRestore SharePoint test\n" >> ${CORSO_LOG_FILE} echo -e "\nRestore SharePoint test\n" >> ${CORSO_LOG_FILE}
./corso restore sharepoint \ ./corso restore sharepoint \
--no-stats \ --no-stats \
@ -513,7 +513,7 @@ jobs:
id: sharepoint-incremental-test id: sharepoint-incremental-test
run: | run: |
set -euo pipefail 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 \ ./corso backup create sharepoint \
--no-stats \ --no-stats \
@ -537,7 +537,7 @@ jobs:
id: sharepoint-incremental-restore-test id: sharepoint-incremental-restore-test
run: | run: |
set -euo pipefail 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 \ ./corso restore sharepoint \
--no-stats \ --no-stats \