Skip to content

Commit

Permalink
fix compatibility with zend-inputfilter 2.6
Browse files Browse the repository at this point in the history
zendframework/zend-inputfilter#96 introduced a signature change in
`InputFilterPluginManager::populateFactories()`
  • Loading branch information
stefanotorresi committed Mar 10, 2016
1 parent 61d38ab commit c6034f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/ModuleIntegrationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public function testFilterConfigCanBeInitializedByZendInputFilterFactory()
{
$app = Application::init($this->appConfig);
$inputFilter = new InputFilter();
$app->getServiceManager()->get('InputFilterManager')->populateFactory($inputFilter);
$app->getServiceManager()->get('InputFilterManager')->populateFactory($inputFilter, null);

$config = [ 'HTML.AllowedElements' => 'a' ];

Expand Down

0 comments on commit c6034f3

Please sign in to comment.