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

Commit

Permalink
Fix failing test
Browse files Browse the repository at this point in the history
- Improperly trying to use "RouteInterface" (the type) as a property, instead of
  "Route" (the implementation)
  • Loading branch information
weierophinney committed May 7, 2012
1 parent 0fdeede commit debad5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/Page/MvcTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ public function testRouteAccessor()
'controller' => 'index'
));

$props = array('RouteInterface');
$props = array('Route');
$valids = array('index', 'help', 'home', 'default', '1', ' ', null);
$invalids = array(42, (object) null);

Expand Down

0 comments on commit debad5a

Please sign in to comment.