Skip to content
This repository has been archived by the owner on Jan 30, 2020. It is now read-only.

Commit

Permalink
Merge branch 'feature/filters-refactor' of https://github.com/denixpo…
Browse files Browse the repository at this point in the history
…rt/zf2 into feature/filter-i18n
  • Loading branch information
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion test/Transfer/Adapter/AbstractTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,10 @@ public function testAdapterShouldAllowAddingMultipleFiltersAtOnceUsingBothInstan
{
$filters = array(
'Word\SeparatorToCamelCase' => array('separator' => ' '),
array('filter' => 'Alpha', 'options' => array(true)),
array(
'filter' => 'Alpha',
'allow_white_space' => true
),
new Filter\BaseName(),
);
$this->adapter->addFilters($filters);
Expand Down

0 comments on commit e7abf4a

Please sign in to comment.