diff --git a/lib/Cake/Test/Case/Routing/RouterTest.php b/lib/Cake/Test/Case/Routing/RouterTest.php index dd7e6879a..7cdb23cd5 100644 --- a/lib/Cake/Test/Case/Routing/RouterTest.php +++ b/lib/Cake/Test/Case/Routing/RouterTest.php @@ -2487,7 +2487,7 @@ class RouterTest extends CakeTestCase { */ public function testResourceMap() { $default = Router::resourceMap(); - $exepcted = array( + $expected = array( array('action' => 'index', 'method' => 'GET', 'id' => false), array('action' => 'view', 'method' => 'GET', 'id' => true), array('action' => 'add', 'method' => 'POST', 'id' => false), @@ -2495,7 +2495,7 @@ class RouterTest extends CakeTestCase { array('action' => 'delete', 'method' => 'DELETE', 'id' => true), array('action' => 'edit', 'method' => 'POST', 'id' => true) ); - $this->assertEquals($default, $exepcted); + $this->assertEquals($default, $expected); $custom = array( array('action' => 'index', 'method' => 'GET', 'id' => false),