Correct argument order.

This commit is contained in:
euromark 2013-10-09 20:43:54 +02:00
parent 9f3cf82629
commit ce1939c4d6

View file

@ -2653,7 +2653,7 @@ class RouterTest extends CakeTestCase {
array('action' => 'delete', 'method' => 'DELETE', 'id' => true),
array('action' => 'edit', 'method' => 'POST', 'id' => true)
);
$this->assertEquals($default, $expected);
$this->assertEquals($expected, $default);
$custom = array(
array('action' => 'index', 'method' => 'GET', 'id' => false),