Skip to content

Commit

Permalink
minor test improvement
Browse files Browse the repository at this point in the history
  • Loading branch information
rfay committed Oct 11, 2024
1 parent 172a1b5 commit 136af2b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test.bats
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ push_health_checks() {
run ddev ibexa_cloud ssh -p ${IBEXA_PROJECT} -e push -- rm -f var/encore/junk.txt
assert_success
# Verify that it doesn't exist to start with
run ddev ibexa_cloud ssh -p ${IBEXA_PROJECT} -e push ls var/encore/junk.txt
run ddev ibexa_cloud ssh -p ${IBEXA_PROJECT} -e push -- ls var/encore/junk.txt
assert_failure
touch ${TESTDIR}/var/encore/junk.txt
ddev mutagen sync
Expand All @@ -53,7 +53,7 @@ push_health_checks() {
run ddev ibexa_cloud db:sql -p ${IBEXA_PROJECT} -e push -- 'SELECT name FROM ezpage_zones WHERE id=18;'
assert_output --partial junk
# Verify the new file exists
run ddev ibexa_cloud ssh -p ${IBEXA_PROJECT} -e push ls var/encore/junk.txt
run ddev ibexa_cloud ssh -p ${IBEXA_PROJECT} -e push -- ls var/encore/junk.txt
assert_success
}

Expand Down

0 comments on commit 136af2b

Please sign in to comment.