From b356a2249e0f4791bb5a47a933a4a7138cea8e62 Mon Sep 17 00:00:00 2001 From: David Gageot Date: Wed, 2 Dec 2015 11:51:29 +0100 Subject: [PATCH] Remove redundant flag in integration tests Signed-off-by: David Gageot --- test/integration/run-bats.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/run-bats.sh b/test/integration/run-bats.sh index 05970a4cc6..f3390f3ce5 100755 --- a/test/integration/run-bats.sh +++ b/test/integration/run-bats.sh @@ -15,7 +15,7 @@ function quiet_run () { function cleanup_machines() { if [[ $(machine ls -q | wc -l) -ne 0 ]]; then - quiet_run machine rm -y -f $(machine ls -q) + quiet_run machine rm -f $(machine ls -q) fi }