diff options
author | h-hishida <h-hishida@quartetcom.co.jp> | 2015-04-28 09:46:49 +0900 |
---|---|---|
committer | h-hishida <h-hishida@quartetcom.co.jp> | 2015-04-28 09:46:49 +0900 |
commit | 14ef09d435b9da1c81e1a784caeb4368463937f5 (patch) | |
tree | 2435de828e9ee487fd1481064e2e86768009a060 /tests/Plugin/BasePluginTest.php | |
parent | 373ae12ca5db9837f84fef44f3f7077e766aca08 (diff) | |
download | PHPExcelFixer.StyleFixer-14ef09d435b9da1c81e1a784caeb4368463937f5.zip PHPExcelFixer.StyleFixer-14ef09d435b9da1c81e1a784caeb4368463937f5.tar.gz PHPExcelFixer.StyleFixer-14ef09d435b9da1c81e1a784caeb4368463937f5.tar.bz2 |
fixed namespace
Diffstat (limited to 'tests/Plugin/BasePluginTest.php')
-rw-r--r-- | tests/Plugin/BasePluginTest.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/Plugin/BasePluginTest.php b/tests/Plugin/BasePluginTest.php index 0686eb4..1705609 100644 --- a/tests/Plugin/BasePluginTest.php +++ b/tests/Plugin/BasePluginTest.php @@ -1,7 +1,7 @@ <?php -namespace PHPExcel\StyleFixer\Plugin; +namespace PHPExcelFixer\StyleFixer\Plugin; abstract class BasePluginTest extends \PHPUnit_Framework_TestCase @@ -30,7 +30,7 @@ abstract class BasePluginTest extends \PHPUnit_Framework_TestCase */ protected function createBookUtil($count, $map) { - $bookUtil = $this->getMock('PHPExcel\StyleFixer\Util\Book'); + $bookUtil = $this->getMock('PHPExcelFixer\StyleFixer\Util\Book'); $bookUtil ->expects($this->exactly($count)) ->method('makeSheetMap') |