From f05ffb308132909e32c04daaeb8e0994ece17668 Mon Sep 17 00:00:00 2001 From: meadsteve Date: Fri, 13 Dec 2013 16:07:11 +0000 Subject: [PATCH] update executor test --- Tests/PHPCI/Plugin/Util/ExecutorTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/PHPCI/Plugin/Util/ExecutorTest.php b/Tests/PHPCI/Plugin/Util/ExecutorTest.php index ec640e95..01267217 100644 --- a/Tests/PHPCI/Plugin/Util/ExecutorTest.php +++ b/Tests/PHPCI/Plugin/Util/ExecutorTest.php @@ -22,7 +22,7 @@ class ExecutorTest extends ProphecyTestCase protected function setUp() { parent::setUp(); - $this->mockBuildLogger = $this->prophesize('\PHPCI\BuildLogger'); + $this->mockBuildLogger = $this->prophesize('\PHPCI\Logging\BuildLogger'); $this->mockFactory = $this->prophesize('\PHPCI\Plugin\Util\Factory'); $this->testedExecutor = new Executor($this->mockFactory->reveal(), $this->mockBuildLogger->reveal()); }