From 52202c08c960efcb4551f8c032602b3add4e85a0 Mon Sep 17 00:00:00 2001 From: danio1024 Date: Fri, 9 May 2014 14:51:45 +0200 Subject: [PATCH] Added missing run statement for PhpSpec --- PHPCI/Plugin/PhpSpec.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PHPCI/Plugin/PhpSpec.php b/PHPCI/Plugin/PhpSpec.php index c8a36253..b2213013 100644 --- a/PHPCI/Plugin/PhpSpec.php +++ b/PHPCI/Plugin/PhpSpec.php @@ -58,7 +58,7 @@ class PhpSpec implements PHPCI\Plugin return false; } - $success = $this->phpci->executeCommand($phpspec . ' --format=pretty --no-code-generation'); + $success = $this->phpci->executeCommand($phpspec . ' run --format=pretty --no-code-generation'); chdir($curdir);