Update lib/tests.sh

Co-authored-by: Kayou <pierre@kayou.io>
This commit is contained in:
Alexandre Aubin 2020-12-25 14:34:19 +01:00 committed by GitHub
parent a4c0a3fcc4
commit 9279a913aa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -488,7 +488,7 @@ TEST_BACKUP_RESTORE () {
ret=$? ret=$?
fi fi
[ $ret -eq 0 ] || main_result=1 [ $ret -eq 0 ] || { main_result=1; break_before_continue; continue; }
# Grab the backup archive into the LXC container, and keep a copy # Grab the backup archive into the LXC container, and keep a copy
lxc file pull -r $LXC_NAME/home/yunohost.backup/archives $TEST_CONTEXT/ynh_backups lxc file pull -r $LXC_NAME/home/yunohost.backup/archives $TEST_CONTEXT/ynh_backups
@ -903,4 +903,3 @@ ACTIONS_CONFIG_PANEL () {
return $main_result return $main_result
} }