Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -34,6 +34,6 @@ protected function setUp()
*/
public function runSuccessful()
{
$this->checkComposerFilesPreCommitExecutor->run($this->outuputInterface, array());
$this->checkComposerFilesPreCommitExecutor->run($this->outputInterface, array());
}
}