Merge pull request #1295 from exoscale/fix/bats-invoking-docker-machine

test: don't invoke docker-machine directly
This commit is contained in:
Evan Hazlett 2015-06-04 14:01:30 -04:00
commit 7397d15e60
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ function quiet_run () {
} }
function cleanup_machines() { function cleanup_machines() {
if [[ $(docker-machine ls -q | wc -l) -ne 0 ]]; then if [[ $(machine ls -q | wc -l) -ne 0 ]]; then
quiet_run machine stop $(machine ls -q) quiet_run machine stop $(machine ls -q)
quiet_run machine rm $(machine ls -q) quiet_run machine rm $(machine ls -q)
fi fi