From ce1939c4d612baefbaff51f95ec4c23c59d5f25d Mon Sep 17 00:00:00 2001 From: euromark Date: Wed, 9 Oct 2013 20:43:54 +0200 Subject: [PATCH] Correct argument order. --- lib/Cake/Test/Case/Routing/RouterTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Cake/Test/Case/Routing/RouterTest.php b/lib/Cake/Test/Case/Routing/RouterTest.php index a67e62471..0508deb9f 100644 --- a/lib/Cake/Test/Case/Routing/RouterTest.php +++ b/lib/Cake/Test/Case/Routing/RouterTest.php @@ -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),