test: fixes for test suite post-cobra migrate

See toolshed/organising#650
This commit is contained in:
2024-12-27 20:44:07 +01:00
parent 8fa20e2c7f
commit 008582c3d9
25 changed files with 12 additions and 575 deletions

View File

@ -4,7 +4,7 @@ _mkfile() {
}
_mkfile_remote() {
run $ABRA app run "$TEST_APP_DOMAIN" app "bash -c \"echo $2 > $1\""
run $ABRA app run "$TEST_APP_DOMAIN" app -- "bash -c \"echo $2 > $1\""
assert_success
}
@ -19,6 +19,6 @@ _rm() {
}
_rm_remote() {
run "$ABRA" app run "$TEST_APP_DOMAIN" app rm -rf "$1"
run "$ABRA" app run "$TEST_APP_DOMAIN" app -- rm -rf "$1"
assert_success
}