Skip to content

Commit

Permalink
Fixed route matcher test
Browse files Browse the repository at this point in the history
  • Loading branch information
mtymek committed Mar 11, 2014
1 parent 9a988d0 commit 121d1c9
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tests/ZendTest/Console/RouteMatcher/DefaultRouteMatcherTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -852,7 +852,7 @@ public static function routeProvider()
'mandatory-literal-camel-case' => array(
'FooBar',
array('FooBar'),
array(),
array('FooBar' => null),
),
'mandatory-literal-camel-case-no-match' => array(
'FooBar',
Expand All @@ -862,7 +862,7 @@ public static function routeProvider()
'optional-literal-camel-case' => array(
'[FooBar]',
array('FooBar'),
array(),
array('FooBar' => true),
),
'optional-literal-camel-case-no-match' => array(
'[FooBar]',
Expand All @@ -872,14 +872,14 @@ public static function routeProvider()
'optional-literal-alternative-camel-case' => array(
'[ FooBar | FoozBar ]',
array('FooBar'),
array(),
array('FooBar' => true),
),
'required-literal-alternative-camel-case' => array(
'mandatory-literal-alternative-camel-case' => array(
'( FooBar | FoozBar )',
array('FooBar'),
array(),
array('FooBar' => true),
),
'required-literal-alternative-camel-case-no-match' => array(
'mandatory-literal-alternative-camel-case-no-match' => array(
'( FooBar | FoozBar )',
array('baz'),
null,
Expand Down

0 comments on commit 121d1c9

Please sign in to comment.