Skip to content

Commit

Permalink
Making a test actually test what its supposed to.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Dec 18, 2010
1 parent 319e622 commit 7c6af5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cake/tests/cases/libs/router.test.php
Expand Up @@ -1350,7 +1350,7 @@ function testConnectNamed() {
Router::reload();
Router::connect('/:controller/:action/*');
Router::connectNamed(array('page'), array('default' => false, 'greedy' => false));
$result = Router::parse('/categories/index?limit=5');
$result = Router::parse('/categories/index/limit=5');
$this->assertTrue(empty($result['named']));
}

Expand Down

0 comments on commit 7c6af5b

Please sign in to comment.