Skip to content

Commit 481112f

Browse files
committed
Fixed phpspec test
1 parent 82259e5 commit 481112f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

spec/PHPCR/Shell/Event/CommandExceptionEventSpec.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
use PhpSpec\ObjectBehavior;
66
use Prophecy\Argument;
77
use Symfony\Component\Console\Output\OutputInterface;
8+
use Symfony\Component\Console\Input\InputInterface;
89

910
class CommandExceptionEventSpec extends ObjectBehavior
1011
{
@@ -15,9 +16,10 @@ function it_is_initializable()
1516

1617
function let(
1718
\Exception $exception,
19+
InputInterface $input,
1820
OutputInterface $output
1921
) {
20-
$this->beConstructedWith($exception, $output);
22+
$this->beConstructedWith($exception, $input, $output);
2123
}
2224

2325
function it_should_provide_access_to_event_parameters(

0 commit comments

Comments
 (0)