From 8072688a1428b8eebce82fb3e3dbc609487e3b25 Mon Sep 17 00:00:00 2001 From: Christophe Sicard Date: Fri, 2 Oct 2015 15:42:09 +0200 Subject: [PATCH] Fix a typo --- .../Composer/CheckComposerFilesPreCommitExecutorTest.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/PhpGitHooks/Tests/Application/Composer/CheckComposerFilesPreCommitExecutorTest.php b/src/PhpGitHooks/Tests/Application/Composer/CheckComposerFilesPreCommitExecutorTest.php index 471d2e3..96629d9 100644 --- a/src/PhpGitHooks/Tests/Application/Composer/CheckComposerFilesPreCommitExecutorTest.php +++ b/src/PhpGitHooks/Tests/Application/Composer/CheckComposerFilesPreCommitExecutorTest.php @@ -17,12 +17,12 @@ class CheckComposerFilesPreCommitExecutorTest extends \PHPUnit_Framework_TestCas /** @var InMemoryOutputHandler */ private $outputHandler; /** @var InMemoryOutputInterface */ - private $outuputInterface; + private $outputInterface; protected function setUp() { $this->outputHandler = new InMemoryOutputHandler(); - $this->outuputInterface = new InMemoryOutputInterface(); + $this->outputInterface = new InMemoryOutputInterface(); $this->composerFilesValidator = new InMemoryComposerFilesValidator(); $this->checkComposerFilesPreCommitExecutor = new CheckComposerFilesPreCommitExecutor( $this->composerFilesValidator @@ -34,6 +34,6 @@ protected function setUp() */ public function runSuccessful() { - $this->checkComposerFilesPreCommitExecutor->run($this->outuputInterface, array()); + $this->checkComposerFilesPreCommitExecutor->run($this->outputInterface, array()); } }