Skip to content

Commit

Permalink
Fix PHP53
Browse files Browse the repository at this point in the history
  • Loading branch information
veewee committed May 30, 2015
1 parent b2fa53c commit 1c23fdb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spec/GrumPHP/Configuration/GrumPHPSpec.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,13 @@ function it_can_return_a_particular_task_configuration(ContainerInterface $conta

function it_should_return_empty_ascii_location_for_unknown_resources(ContainerInterface $container)
{
$container->getParameter('ascii')->willReturn([]);
$container->getParameter('ascii')->willReturn(array());
$this->getAsciiContentPath('success')->shouldReturn(null);
}

function it_should_return_the_ascii_location_for_known_resources(ContainerInterface $container)
{
$container->getParameter('ascii')->willReturn(['success' => 'success']);
$container->getParameter('ascii')->willReturn(array('success' => 'success'));
$this->getAsciiContentPath('success')->shouldReturn('success');
}
}

0 comments on commit 1c23fdb

Please sign in to comment.