From 52a908009da5f474912d71e88a896fd10bdee6ef Mon Sep 17 00:00:00 2001 From: "steve.brazier" Date: Fri, 6 Dec 2013 15:17:17 +0000 Subject: [PATCH] fix PhpUnit test caseing. --- Tests/PHPCI/Plugin/PHPUnitTest.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Tests/PHPCI/Plugin/PHPUnitTest.php b/Tests/PHPCI/Plugin/PHPUnitTest.php index 211d06e2..89b24694 100644 --- a/Tests/PHPCI/Plugin/PHPUnitTest.php +++ b/Tests/PHPCI/Plugin/PHPUnitTest.php @@ -9,7 +9,7 @@ namespace PHPCI\Plugin\Tests; -use PHPCI\Plugin\PHPUnit; +use PHPCI\Plugin\PhpUnit; /** * Unit test for the PHPUnit plugin. @@ -19,7 +19,7 @@ class PHPUnitTest extends \PHPUnit_Framework_TestCase { /** - * @var PHPUnit $testedPhpUnit + * @var PhpUnit $testedPhpUnit */ protected $testedPhpUnit; @@ -57,7 +57,7 @@ class PHPUnitTest extends \PHPUnit_Framework_TestCase protected function loadPhpUnitWithOptions($arrOptions = array()) { - $this->testedPhpUnit = new PHPUnit($this->mockCiBuilder, $this->mockBuild, $arrOptions); + $this->testedPhpUnit = new PhpUnit($this->mockCiBuilder, $this->mockBuild, $arrOptions); } /**