Skip to content

Commit

Permalink
Merge branch 'qa/18' into develop
Browse files Browse the repository at this point in the history
Forward port #18
  • Loading branch information
michalbundyra committed Apr 14, 2020
2 parents 49a44fa + 6664c6b commit 49f2b11
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/CollectionInputFilterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@ public function testSetInputFilterWithInvalidTypeThrowsInvalidArgumentException(
$inputFilter = $this->inputFilter;

$this->expectException(RuntimeException::class);
$this->expectExceptionMessage('expects an instance of Laminas\InputFilter\BaseInputFilter; received "stdClass"');
$this->expectExceptionMessage(
'expects an instance of Laminas\InputFilter\BaseInputFilter; received "stdClass"'
);
/** @noinspection PhpParamsInspection */
$inputFilter->setInputFilter(new stdClass());
}
Expand Down

0 comments on commit 49f2b11

Please sign in to comment.