From 82043ba44426efcc74dd17d29a0de45a55fabf5d Mon Sep 17 00:00:00 2001 From: Emmanuel Vella Date: Wed, 9 Jul 2014 14:04:09 +0200 Subject: [PATCH] Update Behat plugin to be compatible with Behat 3 Closes #482 --- PHPCI/Plugin/Behat.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PHPCI/Plugin/Behat.php b/PHPCI/Plugin/Behat.php index 679d9c28..f6334d05 100644 --- a/PHPCI/Plugin/Behat.php +++ b/PHPCI/Plugin/Behat.php @@ -56,7 +56,7 @@ class Behat implements \PHPCI\Plugin return false; } - $success = $this->phpci->executeCommand($behat . ' --no-time --format="failed" %s', $this->features); + $success = $this->phpci->executeCommand($behat . ' %s', $this->features); chdir($curdir); return $success;