1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/mattermost_ynh.git synced 2024-09-03 19:36:29 +02:00

test: don’t mix --verbose option with app names

This commit is contained in:
Pierre de La Morinerie 2017-10-12 11:57:13 +05:30
parent caf342f4fd
commit 7fc00fe0df

View file

@ -136,7 +136,7 @@ function test_simple_upgrade() {
function test_simple_backup() {
echo "--- Running simple backup test ---"
_vagrant_ssh "sudo yunohost backup create --name mattermost-test-backup --ignore-system --apps $APP_NAME $VERBOSE_OPT"
_vagrant_ssh "sudo yunohost backup create --name mattermost-test-backup --ignore-system $VERBOSE_OPT --apps $APP_NAME"
}
function test_simple_remove() {
@ -146,7 +146,7 @@ function test_simple_remove() {
function test_simple_restore() {
echo "--- Running simple restore test ---"
_vagrant_ssh "sudo yunohost backup restore mattermost-test-backup --force --ignore-system --apps $APP_NAME $VERBOSE_OPT"
_vagrant_ssh "sudo yunohost backup restore mattermost-test-backup --force --ignore-system $VERBOSE_OPT --apps $APP_NAME"
_assert_mattermost_frontpage_up "$DOMAIN"
}